|
|
Source code |
1 |
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/maps?t=h&hl=de&ie=UTF8&ll=51.217039,9.877878&spn=0,79.013672&z=4&layer=c&cbll=52.11366,-3.153659&panoid=x1FDdF0Vz99LzAgZNWrpTg&cbp=12,30.55,,0,5&source=embed&output=svembed"></iframe><br /><small><a href="http://maps.google.de/maps?t=h&hl=de&ie=UTF8&ll=51.217039,9.877878&spn=0,79.013672&z=4&layer=c&cbll=52.11366,-3.153659&panoid=x1FDdF0Vz99LzAgZNWrpTg&cbp=12,30.55,,0,5&source=embed" style="color:#0000FF;text-align:left">Größere Kartenansicht</a></small> |
This post has been edited 1 times, last edit by "Tobit" (Apr 29th 2010, 9:59am)
|
|
JavaScript Code |
1 2 3 |
<script src='js/StreetViewControl.js' type='text/javascript'></script> var map = new GMap2(...); map.addControl(new StreetViewControl()); |
|
|
HTML Code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<!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" xmlns:v="urn:schemas-microsoft-com:vml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Google Maps JavaScript API Example: Simple Map</title> <script src="http://maps.google.com/maps?file=api&v=2&sensor=false&key=ABQIAAAAzr2EBOXUKnm_jVnk0OJI7xSosDVG8KKPE1-m51RBrvYughuyMxQ-i1QfUnH94QxWIa6N4U6MouMmBA" type="text/javascript"></script> <script src='http://tech.reumer.net/plugins/content/StreetViewControl/StreetViewControl.js' type='text/javascript'></script> <script type="text/javascript"> function initialize() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map_canvas")); map.setCenter(new GLatLng(37.4419, -122.1419), 13); map.setUIToDefault(); map.addControl(new StreetViewControl()); } } </script> </head> <body onload="initialize()" onunload="GUnload()"> <div id="map_canvas" style="width: 500px; height: 300px"></div> </body> </html> |
hat dieses Rechtliche oder technische Hintergründe? Wenn ich dieses auf meine Kappe nehmen würde, wäre "einfach" entsprechene Zeilen mit Inhalten zu ergänzen?!Allerdings bin ich noch nicht sicher, ob ich es - so lange es nicht offiziell von Google supported wird - ins Plugin einbauen werde.
hat dieses Rechtliche oder technische Hintergründe?Allerdings bin ich noch nicht sicher, ob ich es - so lange es nicht offiziell von Google supported wird - ins Plugin einbauen werde.