Guest User

Untitled

a guest
Oct 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function generateMarker(rgbColor){
  2.  
  3. var image;
  4. //image codes
  5.  
  6. return image;
  7. }
  8.  
  9. var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
  10. var mapOptions = {
  11. zoom: 4,
  12. center: myLatlng
  13. }
  14. var map = new google.maps.Map(document.getElementById("map"), mapOptions);
  15.  
  16. var marker = new google.maps.Marker({
  17. position: myLatlng,
  18. title:"Hello World!",
  19. icon:generateMarker([125,0,32])
  20. });
  21.  
  22. // To add the marker to the map, call setMap();
  23. marker.setMap(map);
Add Comment
Please, Sign In to add comment