Hi, Thanks Zach. I already can create markers and remove them with my code. I can also open and close the marker, but I want to be able to listen for the...
Okay, here's what I've figured out. A local search query contains a zip code if requested. Lucky for us, a zip code will work to call a local weather query,...
This is such a great help - thanks for the assistance! I did have a couple of questions regarding further usage of this XML implementation (I'm well outside...
Hi everyone, i found a google map for city name, then it generates a key and little script for your url on web site..bla bla but, if we would like to use only...
I am also getting the Operation timed out screen and the xmlsrc map.xml file listed in my url appears to not be found. Does this mean api is looking for the...
This should work for you, using CDATA forces the xml parser to ignore the < > and other special characters. <description> <![CDATA[ <b>Marker</b> Description ...
markerContainer is a movieclip that holds each marker movieclip. you could loop through it and perform an open/close, but its not ideal. Id suggest that you...
I could be wrong, but I think you need to import com.yahoo.maps.LatLon; to make LatLon objects that will work properly with that method. I'm trying to mark...
Yes, you need to import that class. import com.yahoo.maps.LatLon; var latlon = new LatLon(47,-122); myMap.setCenterByLatLon(latlon); ... What problems are you...
Hello, I am currently working on a demo using the Flash-AS API. This demo requires the map to rotate. To allow the map to rotate about center, I have placed...
Hi, I have an GeoRSS XML file of franchise locations with standard address information (no lat/long data). I would like to produce a map that given a user...
Looks to me like your problem is in addEventListener. When the event is dispatched it passes an event object to the function being called, however you are...
I've searched the archives and the most recent posting on this topic I could find was last June - so I'm asking again... Has anyone found a way of detecting...
I'm fine now, thanks. I'm doing the Flash 8 / Flex 2 step, and I'm learning this as I go, so at the time I wrote that post, I was pretty frustrated with my own...
Thanks -- this solves the problem of the text prematurely appearing, but it still doesn't look like it's catching the clicks on the customswfmarkers -- I've...
Hi, I'm creating maps from a GeoRSS file and am trying to add zipcode information to the address entries. When I include the following the data doesn't display...
To add a bit more information: I've now tried this with the map outside of the movie clip and am still not able to get the listener to fire when I click on the...
Sorry I missed something in your code: try this out: function onCustomMarkerLoaded(event:Object):Void { var marker = event.marker; var scope = this._parent; ...