cf_googleMap v.1.3.1 release
There are only a couple of new features in the 1.3.1 release. I wanted to release this ASAP as the 1.3 tag had some bugs in it that threw JavaScript errors
- Added the option to view a overview map.
- Added logic to not add the point to the map if the latitude or longitude are not numeric.
- Fixed zooming issue where controls are not active until the point is clicked or the map is dragged.
You can view the details of the changes on the project page or download it on RIA Forge
I think IconAnchor isn't working yet.
It requires two numbers, and you've got it =
new GPoint(#Variables.ThisTag.Icons[i].IconAnchor#);
It probably needs to be IconAnchorY, IconAnchorX
New release looks great - THANKS for adding the overview... love it!
Coupla quick q's/issues
I am working on a small map-thing here
http://chacocanyon.info/map.cfm
so far so good, however...
- the level isn't doing anything for me, seems to be defaulted to the same zoom no matter what I enter for level="x" in the attributes
- can't get a hybrid map shown, using maptype="HYBRID"
- Is there any way to set up the map so the tooltip is hidden until clicked? Seems like the last few things I did worked that way, but all of the current examples have the info window showing on-load. Any ideas?
here is my entire map call for that page - thanks in advance for any light you can shed on any part of this
<gm:googlemap width="526" height="357" key="#Application.GoogleMapKey#" level="10" overviewmap="true" overviewmapwidth="200" overviewmapheight="150" maptype="hybrid">
<gm:googlemappoint title="Chaco Canyon" address="Kanab, Utah<br/><br/><em>(Use Map Controls to Zoom In or Out)</em>" lon="-112.54188537597656" lat="37.03818778569201" MainPoint="true">
</gm:googlemap>