Hello! I'm using the following code to create a mashup of google maps and my flickr photos:
Some of my photos are geotagged on flickr to the same spot. This shows in the Flickr map, but not on my google map. In a google Flickr/Google Maps mashup, is there a way to get photos geotagged in the same location, to appear in the same location on the map? The code is below. Thanks, Michelle <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Photos of Washington DC</title> <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAjBdk8_4JVUklmevLg3KBRhTr53X0GyRijoHknPqsaiQcjiqHPxREKH3fps7RbyLD5CX4WJ9YR7fAJQ" type="text/javascript"></script> <script type="text/javascript"> var map; function initialize() { if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById("map")); map.enableScrollWheelZoom(); map.removeMapType(G_HYBRID_MAP); photos = new GGeoXml("http://api.flickr.com/services/rest/?method=flickr.photos.search&api_key=1f5ca90da80883ac100c9a58225b348c&tags=Washington&format=feed-georss&user_id=27491...@n05"); map.setCenter(new GLatLng(38.89765,-77.035667), 15); map.setUIToDefault(); map.addControl(new GLargeMapControl()); map.addControl(new GMapTypeControl()); map.addOverlay(photos); } } </script> </head> <body style="font-family:Arial, sans serif" onload="initialize()" onunload="GUnload()"> <div id="map" style="width: 600px; height: 600px"></div> </body> </html> -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
