Advertisement
Guest User

output icon image not full:(

a guest
Jan 18th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var position = new google.maps.LatLng(place["latitude"], place["longitude"]);
  2.     // define marker
  3.     var marker = new google.maps.Marker({
  4.         map: map,
  5.         position: position,
  6.         title: place["place_name"] + ", " + place["admin_name1"],
  7.         label: place["place_name"] + ", " + place["admin_name1"],
  8.         icon: { url: "http://maps.google.com/mapfiles/kml/paddle/purple-stars.png",
  9.                 scaledSize: new google.maps.Size(50,50),
  10.                 origin: new google.maps.Point(0, 30),
  11.                 //size: new google.maps.Size(20, 32),
  12.                 anchor: new google.maps.Point(0, 30)
  13.                 }
  14.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement