search for: iconshadowurl

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

2009 Nov 06
0
r54 committed - ...
...nchor) { + ax = this.iconAnchor[0]; + ay = this.iconAnchor[1]; + } + var gAnchorPoint = new google.maps.Point(ax,ay); + if (this.iconUrl) { - options.icon = new google.maps.MarkerImage(this.iconUrl); - if (typeof(this.iconShadowUrl) != ''undefined'') { - options.shadow = new google.maps.MarkerImage(this.iconShadowUrl); + options.icon = new google.maps.MarkerImage( + this.iconUrl, + new google.maps.Size(this.iconSize[0], + this.iconSize[1]), + new...
2009 Jun 01
0
[mapstraction commit] r12 - Implemented most Cloudmade functions. Still requires image, tile and KML/GeoRSS overlays
...+ cicon.image = this.iconUrl; + if (this.iconSize) { + cicon.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.la...