search for: iconshadowsize

Displaying 2 results from an estimated 2 matches for "iconshadowsize".

2009 Nov 06
0
r54 committed - ...
...new google.maps.Size(this.iconSize[0], + this.iconSize[1]), + new google.maps.Point(0,0), + gAnchorPoint + ); + + // do we have a Shadow? + if (this.iconShadowUrl) { + if (this.iconShadowSize) { + var x = this.iconShadowSize[0]; + var y = this.iconShadowSize[1]; + options.shadow = new google.maps.MarkerImage( + this.iconShadowUrl, + new google.maps.Size(x,y), +...
2009 Jun 01
0
[mapstraction commit] r12 - Implemented most Cloudmade functions. Still requires image, tile and KML/GeoRSS overlays
...iconSize = new CM.Size(this.iconSize[0], this.iconSize[1]); + if (this.iconAnchor) { + cicon.iconAnchor = new CM.Point(this.iconAnchor[0], this.iconAnchor[1]); + } + } + if (this.iconShadowUrl) { + cicon.shadow = this.iconShadowUrl; + if (this.iconShadowSize) { + cicon.shadowSize = new CM.Size(this.iconShadowSize[0], this.iconShadowSize[1]); + } + } + options.icon = cicon; + } + if (this.labelText) { + options.title = this.labelText; + } + var cmarker = new CM.Marker(pt, options); + + if (this....