search for: shadowsize

Displaying 5 results from an estimated 5 matches for "shadowsize".

2007 Mar 09
0
(no subject)
...quot;aa... here is the generated script... <script type="text/javascript"> var icon_contact = addOptionsToIcon(new GIcon(),{image : "/images/ gm_contact.png",iconAnchor : new GPoint(10,34),shadow : "/images/ gm_shadow.png",infoWindowAnchor : new GPoint(9,2),shadowSize : new GSize(37,34),iconSize : new GSize(20,34)}); var icon_reference = addOptionsToIcon(new GIcon(),{image : "/images/ gm_reference.png",iconAnchor : new GPoint(10,34),shadow : "/images/ gm_shadow.png",infoWindowAnchor : new GPoint(9,2),shadowSize : new GSize(37,34),iconSi...
2007 Mar 09
0
Clusterer
...generated script (with the line numbers) <script type="text/javascript"> 161 var icon_contact = addOptionsToIcon(new GIcon(),{image : "/images/ gm_contact.png",iconAnchor : new GPoint(10,34),shadow : "/images/ gm_shadow.png",infoWindowAnchor : new GPoint(9,2),shadowSize : new GSize(37,34),iconSize : new GSize(20,34)}); 162 var icon_reference = addOptionsToIcon(new GIcon(),{image : "/ images/gm_reference.png",iconAnchor : new GPoint(10,34),shadow : "/ images/gm_shadow.png",infoWindowAnchor : new GPoint(9,2),shadowSize : new GSize(37,34),ic...
2006 Jan 07
4
GIS Image coordinates / markers?
Hey everyone, Is there Rails support for something like Google Maps, but using my own images/maps? Basically, I''d like to have my own maps/images, be able to drop markers on them, center on certain attributes etc. - Nic
2007 Mar 08
1
map not displayed after Ajax.updater request
...ted script (with the right data...) <div id="map_box" style="border:solid 2px grey; margin:1em auto; width:340px; height:340px;text-align;"> <script type="text/javascript"> var icon_contact = addOptionsToIcon(new GIcon(),{iconSize : new GSize (20,34),shadowSize : new GSize(37 ,34),image : "/images/gm_contact.png",iconAnchor : new GPoint (10,34),shadow : "/images/gm_shadow.png" ,infoWindowAnchor : new GPoint(9,2)}); .......... var map; window.onload = addCodeToFunction(window.onload,function() { if (GBrowserIsCompatible()) { map = new...
2009 Jun 01
0
[mapstraction commit] r12 - Implemented most Cloudmade functions. Still requires image, tile and KML/GeoRSS overlays
...Size = 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....