- Upload folder 'thydzik-google-map' to the '/wp-content/plugins/' directory.
- Activate the plugin through the 'Plugins' menu in WordPress.
- Under 'Plugins' > 'thydzik Google Map', you will find the 'thydzik Google map setup' page. The default map size can be changed here if desired.
- Upload a Google map XML data file with latitude and longitude points. An example XML file http://thydzik.com/thydzikGoogleMap/example.xml is included, it is better to create a directory outside the plugin directory as every time you update your xml files will be deleted.
Use
thydzikGoogleMap is called in a WordPress post by writing the following on a single line where you want the Google Map to appear:
thydzikgooglemap(example.xml)
For the more adventurous;
thydzikgooglemap(example.xml, width, height, zoom, maptype)
where:
- example.xml is your xml file, and example xml file is included with thdyzikGoogleMap in the plugin directory.
- width is the optional width parameter, if left out the default width defined in the thydzikGoogleMap options will be used.
- height is the optional height parameter, if left out the default height defined in the thydzikGoogleMap options will be used.
- zoom is the optional zoom level from 0 to 17 (0 being the furthest away), if left out zoom will be calculated automatically to fit all points.
- maptype is the optional map type parameters, which can be (Normal, G_NORMAL_MAP, N), (SATELLITE, G_SATELLITE_MAP, S), (HYBRID, G_HYBRID_MAP, H), (PHYSICAL, G_PHYSICAL_MAP, P, TERRAIN or T) if left out Normal is defined.
gpx is the optional parmeter to show a icon on the map to allow gpx file download, the parameter can be gpx, d or download.
width, height, zoom, maptype, gpx can be in any order and are case insensitive, all the following are valid uses:
thydzikgooglemap(example.xml)
- thydzikGoogleMap(example.xml, 5, gpx)
- thydzikgooglemap(example.xml, 4, S, download)
- tHyDzIkGoOgLeMaP(example.xml,hYbRiD,450,225, gpx)
- thydzikGoogleMap(example.xml, TERRAIN)
- thydzikGoogleMap(example.xml, 640, 480)
Multiple thydzikGoogleMap can be displayed in a single post.