<!DOCTYPE html> <html> <head> <title>Google Maps JavaScript API v3 Example: Panoramio Layer</title> <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> <meta charset="UTF-8"> <link href="/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css"> <style type="text/css"> #photo-panel { background: #fff; padding: 5px; overflow-y: auto; overflow-x: hidden; width: 300px; max-height: 300px; font-size: 14px; font-family: Arial; border: 1px solid #ccc; box-shadow: -2px 2px 2px rgba(33, 33, 33, 0.4); display: none; } </style> <script type="text/javascript" src="//maps.googleapis.com/maps/api/js?sensor=false&libraries=panoramio"></script> <script type="text/javascript"> function initialize() { var myOptions = { zoom: 16, center: new google.maps.LatLng(47.651743, -122.349243), mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById('map_canvas'), myOptions); var panoramioLayer = new google.maps.panoramio.PanoramioLayer(); panoramioLayer.setMap(map); var photoPanel = document.getElementById('photo-panel'); map.controls[google.maps.ControlPosition.RIGHT_TOP].push(photoPanel); google.maps.event.addListener(panoramioLayer, 'click', function(photo) { var li = document.createElement('li'); var link = document.createElement('a'); link.innerHTML = photo.featureDetails.title + ': ' + photo.featureDetails.author; link.setAttribute('href', photo.featureDetails.url); li.appendChild(link); photoPanel.appendChild(li); photoPanel.style.display = 'block'; }); } google.maps.event.addDomListener(window, 'load', initialize); </script> </head> <body> <ul id="photo-panel"> <li><strong>Photos clicked</strong></li> </ul> <div id="map_canvas"></div> </body> </html>
Wednesday, March 28, 2012
Easy to embed Google Maps with Panoramio photos
Example of using Google Maps Javascript API V3, with layer of Panoramio photos.
Link: https://google-developers.appspot.com/maps/documentation/javascript/examples/layer-panoramio
HTML Code:
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment