SHOW:
|
|
- or go back to the newest paste.
| 1 | function initialize() {
| |
| 2 | var centerlatlng = new google.maps.LatLng(53.644638, -2.526855); | |
| 3 | var myOptions = {
| |
| 4 | zoom: 6, | |
| 5 | center: centerlatlng, | |
| 6 | mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 7 | }; | |
| 8 | var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
| |
| 9 | ||
| 10 | var geocoder = new google.maps.Geocoder(); | |
| 11 | geocoder.geocode( {'address': "UNIT B1 BEACON SHOPPING CENTRE, BEDFORD STREET, NORTH SHIELDS NE29 6QF"}, function(results, status) {
| |
| 12 | if (status == google.maps.GeocoderStatus.OK) {
| |
| 13 | var img = "https://dl.dropboxusercontent.com/u/55888592/marker27.png"; | |
| 14 | - | var info = "<div style = 'float: left'><p><img src='http://www.tsf.uk.com/wp-content/themes/default/images/tsf-logo.gif'></p><p><img src='http://www.ivorygraphics.co.uk/clients/images/Poundland.png'></p></div><div style = 'float: right; width: 200px'><p><b>Route No:</b> 26.0</p><p><b>Postcode:</b> LE1 5GD</p><p><b>Store Name:</b> GREENWICH</p><p><b>Store Address:</b> 41 - 43 GALLOWTREE GATE, LEICESTER LE1 5GD</p></div>"; |
| 14 | + | var info = "<div><p>Sometext</p></div>"; |
| 15 | var infowindow = new google.maps.InfoWindow({
| |
| 16 | }); | |
| 17 | var latlng = results[0].geometry.location; | |
| 18 | var marker = new google.maps.Marker({
| |
| 19 | icon: img, | |
| 20 | position: latlng, | |
| 21 | map: map, | |
| 22 | content: info | |
| 23 | }); | |
| 24 | google.maps.event.addListener(marker, "click", function(content) {
| |
| 25 | infowindow.setContent(this.content); | |
| 26 | infowindow.open(map,this); | |
| 27 | }); | |
| 28 | } else {alert("alert");
| |
| 29 | } | |
| 30 | }); | |
| 31 | marker.setMap(map); | |
| 32 | ||
| 33 | var geocoder = new google.maps.Geocoder(); | |
| 34 | - | geocoder.geocode( {'address': "5 Aston st, south shields"}, function(results, status) {
|
| 34 | + | geocoder.geocode( {'address': "Eldon Square
|
| 35 | 24-26 Sidgate, Newcastle upon Tyne"}, function(results, status) {
| |
| 36 | if (status == google.maps.GeocoderStatus.OK) {
| |
| 37 | - | var info = "<div style = 'float: left'><p><img src='http://www.tsf.uk.com/wp-content/themes/default/images/tsf-logo.gif'></p><p><img src='http://www.ivorygraphics.co.uk/clients/images/Poundland.png'></p></div><div style = 'float: right; width: 200px'><p><b>Route No:</b> 26.0</p><p><b>Postcode:</b> LE1 5GD</p><p><b>Store Name:</b> GREENWICH</p><p><b>Store Address:</b> 41 - 43 GALLOWTREE GATE, LEICESTER LE1 5GD</p></div>"; |
| 37 | + | |
| 38 | var info = "<div><p>Sometext</p></div>"; | |
| 39 | var infowindow = new google.maps.InfoWindow({
| |
| 40 | }); | |
| 41 | var latlng = results[0].geometry.location; | |
| 42 | var marker = new google.maps.Marker({
| |
| 43 | icon: img, | |
| 44 | position: latlng, | |
| 45 | map: map, | |
| 46 | content: info | |
| 47 | }); | |
| 48 | google.maps.event.addListener(marker, "click", function(content) {
| |
| 49 | infowindow.setContent(this.content); | |
| 50 | infowindow.open(map,this); | |
| 51 | }); | |
| 52 | } else {alert("alert");
| |
| 53 | } | |
| 54 | }); | |
| 55 | marker.setMap(map); | |
| 56 | } | |
| 57 | google.maps.event.addDomListener(window, "load", initialize); |