Google Maps plugin is very powerful for creating maps in seconds. Easy to use and no programmer skills required. There is no limit for maps and marker …
Very powerful plugin for creating Google Maps. Add maps with your customized settings to post and pages with shortcode or special editor tool. Show or hide elements with custom parameters. Get directions from any address to your destinations.
Google Maps plugin is built on wordpress core functionality. Maps, markers, polygons and polylines are based custom post type and categories are made with custom taxonomy. Images are associated with WordPress media library.
Themes with widgets support are able to use plugin widgets: filter widget, elements list widget and directions widget.
Developers can use all features on their own source code and make extra functionality to google maps. Plugin is connectable with another plugins like Polylang, Taxonomy Terms Order, Advanced Custom Fields and so on.
In PRO version is also support for widgets, map styles, custom marker icon and a lot of more features.
This is revolution in Google Maps in WordPress.
See detailed overview about Google Maps Ve PRO Version
If you have any problems, contact us at [email protected]
If you have any ideas to make plugin better, contact us at [email protected]
We are very thankful if you help us to translate plugin to your language.
Login to wp-admin and click Plugins -> Add new. Search by “Google Maps VE” keyword and install it. Click here to download Google Maps Ve PRO Version
Click on Google Map -> Add new map from left menu. Insert map title and confiugure by your needs. Save map and then you can add markers, polygons and polylines to created map.
In map settings header is box called shortcode. Copy this to your content. In PRO version there is tool for inserting maps to content.
<?php echo do_shortcode('[ve_gmap map="267"]'); ?>
Visit http://www.googlemapswordpress.com – Free updates forever.
For example you can use Polylang module and enable custom post types in Polylang settings.
‘gmaps_map_ve’));
foreach ($maps as $map) {
$map = $google_maps_ve->getApp()->getMap($map->ID); // see what you can do with map in next question
}
?>
‘gmaps_marker_ve’));
$polygons = get_posts(array(‘post_type’ => ‘gmaps_polygon_ve’));
$polylines = get_posts(array(‘post_type’ => ‘gmaps_polyline_ve’));
// get array with google maps object
$markers = $google_maps_ve->getApp()->getMapMarkers($map->ID);
$polygons = $google_maps_ve->getApp()->getMapPolygons($map->ID);
$polylines = $google_maps_ve->getApp()->getMapPolylines($map->ID);
// do something with markers
foreach ($markers as $marker) {
$detailedMarker = $google_maps_ve->getApp()->getMapMarker($marker->ID);
}
// do something with polygons
foreach ($polygons as $polygon) {
$detailedPolygon = $google_maps_ve->getApp()->getMapPolygon($polygon->ID);
}
// do something with polylines
foreach ($polylines as $polyline) {
$detailedPolyline = $google_maps_ve->getApp()->getMapPolyline($polyline->ID);
}
?>
You can find a lot of icons at url: http://mapicons.nicolasmollet.com/