This example is a Google map displaying KML data, the data source file is called
sail.kml.
This sidebar has the javascript KmlMapParser configuration options set that will:
| imageSize | Boolean | Specifies the width and height of ALL marker images. Using this will override the default size for marker images. example: {width: 16, height:18}; default for Google Maps uses a 32 x 32 image or {width: 32, height:32}. |
| imageHotspot | Boolean | It specifies the pixel position within the icon that is "anchored" to the point specified in the Marker. Using this will override the default anchor for ALL marker images it will NOT override a KML 'hotspot'. example: {x: 0, y:32}; Google Maps uses a 32 x 32 image as the default size so the default hotspot is the bottom middle of the image or {x: 16, y:32} |
| showImageShadow | Boolean | Tries to add a google marker shadow. If no KML styles are used a shadow is always shown. Default is false which will NOT display any marker shadows. |