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...
4848
arbmorris
Feb 1, 2007 3:09 pm
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,...
4849
arbmorris
Feb 1, 2007 3:33 pm
Oops, typed the wrong thing: $a = array('1234-456', '9874-41239;); function snip_zip($s){ $bits = explode('-', $s); return $bits[0]; } $new =...
4850
Zach Graves
z.graves
Feb 1, 2007 5:54 pm
Right, assuming youre using CustomPOIMarker, there is an event, EVENT_POI_CLICKED that has a marker property. ... clicked....
4851
arbmorris
Feb 1, 2007 5:57 pm
This is actually a way to get Yahoo weather into a map. Assuming someone submits a zip....
4852
aronglennon
Feb 2, 2007 1:40 am
Great, Thanks so much...works wonderfully now. ... you can ... clicks...
4853
blakemichaelson
Feb 2, 2007 3:55 am
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...
4854
ngrigas
Feb 2, 2007 3:55 am
XML testing tool by Vince Maniago Anyone know where it is ?...
4855
lcnnancy
Feb 2, 2007 3:55 am
I try to add a marker on the map without success I use the latlon method : Do you see why this doesn t work ? Thanks a lot ...
4856
mustafarsy
Feb 2, 2007 3:55 am
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...
4857
ngrigas
Feb 2, 2007 3:55 am
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...
4858
Andrei Ionescu
escu_andrei
Feb 2, 2007 3:56 am
Hi, i'm using 3.4.0 I't easy to do do an for i=1 to 100 but i want to use map.markerContainer to enumerate the markers. How to get the lenght of...
4859
Andrei Ionescu
escu_andrei
Feb 2, 2007 3:57 am
hi again, I'm using Flash 8 Professional. Thanks, Andrei Ionescu ... From: Zach Graves <zachg@...> To: yws-maps@yahoogroups.com Sent: Thursday,...
4860
Zach Graves
z.graves
Feb 2, 2007 6:14 am
This should work for you, using CDATA forces the xml parser to ignore the < > and other special characters. <description> <![CDATA[ <b>Marker</b> Description ...
4861
Zach Graves
z.graves
Feb 2, 2007 6:17 am
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...
4862
John D.
johndunagan
Feb 2, 2007 4:13 pm
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...
4863
Zach Graves
z.graves
Feb 2, 2007 5:05 pm
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...
4864
Sean
logicalrealist
Feb 2, 2007 7:25 pm
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...
4865
trboyden
Feb 2, 2007 7:25 pm
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...
4866
Zach Graves
z.graves
Feb 2, 2007 8:45 pm
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...
4867
Dave Wood
thepixelpump
Feb 2, 2007 10:22 pm
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...
4868
John D.
johndunagan
Feb 2, 2007 10:41 pm
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...
4869
Sean
logicalrealist
Feb 2, 2007 10:59 pm
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...
4870
trboyden
Feb 2, 2007 10:59 pm
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...
4871
Zach Graves
z.graves
Feb 2, 2007 11:01 pm
Next release has a TILES_LOADED event which will do the trick, hoping to get it out to you all very soon. :) -Zach...
4872
Dave Wood
thepixelpump
Feb 2, 2007 11:30 pm
... Wonderful!!! Thanks. Dave...
4873
sleestaxxx
Feb 3, 2007 9:48 am
I'm incredulous how difficult it has been to find a method to simply display a Map (using the Map Image API) , from a URL call of the form: ...
4874
Zach Graves
z.graves
Feb 3, 2007 10:02 am
This should work for you. The php script gets the url params to pass to the map image api. So you could call this php page like this. ...
4875
Sean
logicalrealist
Feb 3, 2007 7:24 pm
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...
4876
Zach Graves
z.graves
Feb 4, 2007 12:48 am
Sorry I missed something in your code: try this out: function onCustomMarkerLoaded(event:Object):Void { var marker = event.marker; var scope = this._parent; ...