Yahoo Maps Collaboration using Flex and BlazeDS

Two years ago, I wrote a simple Google Maps collaboration example. The Flex application listened to Google Maps events to synchronize maps between different users. It also added nice collaboration features such as videoconferencing and a collaborative whiteboard overlaid on top of the map. In addition to demonstrating the real-time messaging capabilities of Flex, this application also illustrated Flex/Ajax integration using External Interface.
Two recent events prompted me to revisit this sample:
- Yahoo recently released an ActionScript 3 API for Yahoo Maps.
- Adobe recently released the Remoting and Messaging features of LiveCycle Data Services as an Open Source project named BlazeDS.
So, I updated the sample to work with the Yahoo Maps ActionScript API and BlazeDS (or LCDS). No need to communicate between Ajax and Flex in this version since the rendering of the map is entirely done within the Flex application.
Testing the hosted version
Disclaimer: I’m currently hosting the application on the server I use to host this blog (basic PHP and Tomcat hosting plan). I don’t know much about the characteristics of my server, but I’m probably sharing it with a few dozens of other domains and the resources allocated to me are obviously limited in that shared environment. This is clearly not the ideal environment to host a potentially large scale real time application and I’m investigating other hosting solutions. In the meantime, if you experience difficulties running the app, you can install it locally using the instructions provided below (in “Local installation instructions”). The hosted version tries to connect using RTMP by default (available only as part of LCDS) and falls back to “long AMF polling” or regular AMF polling if the RTMP connection fails.
- Access http://coenraets.org/maprooms/maprooms.html on two different machines or in two browser windows on the same machine.
- Make sure you logon with two different user names and the same room name.
- Move the map in one browser and notice that the position of the map is synchronized in the other browser.
- You can also search an address in one browser and the resulting map position will appear in the two browsers.
- The zoom level and the map type are also synchronized between users.
- Click the Map Sharing button in one browser, pick a color to draw on the map (upper left corner), and start drawing.
Note: you can right-click the application and select View Source or click here to see the source code of the application.
Local installation instructions:
- Install BlazeDS. You can download the BlazeDS turnkey server (a version of Tomcat with BlazeDS preinstalled) here.
- Open {blazeds-install-dir}/tomcat/webapps/samples/WEB-INF/flex/services-config.xml and add an AMF long polling channel defined as follows:
<channel-definition id="my-longpolling-amf" class="mx.messaging.channels.AMFChannel"> <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amflongpolling" class="flex.messaging.endpoints.AMFEndpoint"/> <properties> <polling-enabled>true</polling-enabled> <polling-interval-seconds>5</polling-interval-seconds> <wait-interval-millis>60000</wait-interval-millis> <client-wait-interval-millis>1</client-wait-interval-millis> <max-waiting-poll-requests>200</max-waiting-poll-requests> </properties> </channel-definition> - Open WEB-INF/messaging-config.xml and add the following destination:
<destination id="flexmaps"> <properties> <server> <allow-subtopics>true</allow-subtopics> <subtopic-separator>.</subtopic-separator> </server> </properties> <channels> <channel ref="my-longpolling-amf"/> <channel ref="my-polling-amf"/> </channels> </destination> - (Re)start the BlazeDS turnkey server.
- Download the source code of the Yahoo Maps Application here.
- Create a Flex Builder project for the Flex application (maprooms). Make sure you configure your Flex Builder project to work with BlazeDS. To read instructions on how to set up a Flex Builder project that works with BlazeDS, make sure your BlazeDS turnkey server is started, and click here.
- Download the Yahoo Maps ActionScript 3 API here, and add YahooMap.swc in the libs folder of your project.
- Get a Yahoo API key here and assign it to the appid variable in MapArea.mxml.
- Compile the application.
- Open the Flex application in two browser windows (to simulate two users in different locations) and test the application as described above (in “Testing the hosted version”).
Comments
19 Responses to “Yahoo Maps Collaboration using Flex and BlazeDS”
Leave a Reply

Very cool!
[...] Yahoo Maps Collaboration using Flex and BlazeDS [...]
Christophe,
Thank you so much for publishing the source for your projects I have learned so much from them, especially your sqlAdmin and salesBuilder applications!
I look forward to learning more with your Yahoo maps project.
[...] up, Cristophe Coenraets, re-releases his collaborarative mapping tool: The Flex application listened to Google Maps events to synchronize maps between different users. [...]
my firefox (2.0.0.13) is crashing every time I want to test it.
[...] Yahoo Maps Collaboration using Flex and BlazeDS [...]
Well, I’ve done something wrong. I’m trying to get this to work with ColdFusion and LCDS. It gets the map, but the two windows don’t talk to each other. How do I tell that LCDS is running and getting the data?
Cool !
I’ve found a similar app a couple of days ago. It’s Google Maps Collaboration using Flex and BlazeDS.
http://www.banana-systems.com/MyFlight/view/Flight.html
Gee, it was such an easy fix. I had to add the ref to the destination in the WEB-INF/messaging-config.xml file.
[...] Yahoo Maps Collaboration using Flex and BlazeDS : Christophe Coenraets An good example of flex collaboration. [...]
[...] Yahoo Maps collaboration, here is another example of enabling collaboration in a Flex application using the [...]
[...] Coenraets hat seine interaktive Karten-Demo mit Flex nun auf die ActionScript 3 fähige Yahoo API upgedated, so dass man nun ohne AJAX auskommt (zuvor hatte die Demo Google Maps verwendet). Dadurch bleibt [...]
[...] recently posted a number of examples (Yahoo Maps Collaboration and Collaborative Data Entry) showing how to use the BlazeDS / LCDS Message Service to build [...]
Hi, I’m writing an article about Flex and Java for a commercial magazine and I was wondering whether can I use your Flex Test Drive Server (which is already configured) and put it on the magazine’s CD. Of course I can remove all .mxml files (and .java and rest of sources) you created for Flex Test Drive. I just neead a server working out-of-box.
Sorry for leaving this question on your blog. I didn’t found your e-mail address.
I can not get this working locally, I have successfully created the little chart example from the Blazeds dev doc.
I have followed letter by letter, but the two windows don’t talked to each other. What debugging tools do we have with Blazeds
Thanks
Little more insight, I getting a sandbox error too yahoo.
*** Security Sandbox Violation ***
Connection to http://us.maps2.yimg.com/us.tile.yimg.com/tl?x=4940&y=2112&z=4&v=4.1&locale=en&s=256 halted - not permitted from http://localhost:8400/maprooms//maprooms.swf
Sorry to flame your blog, great app, I got the demo to work on an external server (my production) any help or links on setting this up in dev environment with localhost, I assume proxy is needed
Thanks in advance
Thanks for the wonderful example.
One quick question: What is the right way to compile the codes with command line tools? I used “mxmlc maprooms.mxml” and got a swf file that does not run correctly. This swf file is different from the one compiled under Eclipse.
This is really nice example to communication between flex,Yahoo Map API and BlazeDS
It is perfectly working in Internet Explorer but in firefox when i run this firefox unexpectedly closing the browser.
Thanks,
Megharaja S.H.