Пример #1
0
 function metabox_demo($object, $metabox)
 {
     $poi = new Mappress_Poi(array("title" => sprintf("<a href='http://www.wphostreviews.com/mappress'>%s</a>", __("MapPress", 'mappress')), "body" => __("Easy Google Maps", 'mappress'), "point" => array('lat' => 37.370157, 'lng' => -119.333496)));
     $pois = array($poi);
     $map = new Mappress_Map(array("width" => "100%", "height" => 300, "pois" => $pois, "poiList" => false, "zoom" => 4));
     // Display the map
     // Note that the alignment options "left", "center", etc. cause the map to not display properly in the metabox, so force it off
     echo $map->display(array("alignment" => "default"));
 }