Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. function CustomerMarker(map) {
  2. this.Map = map;
  3. this.setMap(map);
  4.  
  5. }
  6.  
  7. GoogleMap = new google.maps.Map(document.getElementById("map"), {
  8. zoom: 16,
  9. canZoom: false,
  10. center: { lat: lat, lng: lng },
  11. mapTypeControl: false,
  12. streetViewControl: false,
  13. scaleControl: false,
  14. clickableIcons: false
  15. });
  16.  
  17. CustomMarker.prototype = new google.maps.OverlayView();
  18. CustomMarker.prototype.onAdd = function () {
  19. //Some code
  20. };
  21. CustomMarker.prototype.draw = function () {
  22. //Some code
  23. };
  24.  
  25. CustomMarker = new CustomMarker(GoogleMap);
  26.  
  27. CustomMarker.setMap(null)
  28.  
  29. Error: this.remove is not a function
  30. pz@https://maps.googleapis.com/maps-api-v3/api/js/30/1/overlay.js:1:251
  31. rk@https://maps.googleapis.com/maps-api-v3/api/js/30/1/overlay.js:2:476
  32. _.pg.prototype.map_changed/<@https://maps.googleapis.com/maps/api
  33. /js?key=AIzaSyBCiIPv6fgrRVn3veTJeP6ihfhrw8AXwbY:125:662
  34. _.G@https://maps.googleapis.com/maps/api/js?key=AIzaSyBCiIPv6fgrRVn3veTJeP6ihfhrw8AXwbY:51:447
  35. _.pg.prototype.map_changed@https://maps.googleapis.com/maps/api/js?key=AIzaSyBCiIPv6fgrRVn3veTJeP6ihfhrw8AXwbY:125:636
  36. Db@https://maps.googleapis.com/maps/api/js?key=AIzaSyBCiIPv6fgrRVn3veTJeP6ihfhrw8AXwbY:37:103
  37. _.k.set@https://maps.googleapis.com/maps/api/js?key=AIzaSyBCiIPv6fgrRVn3veTJeP6ihfhrw8AXwbY:101:728
  38. _.jd/<@https://maps.googleapis.com/maps/api/js?key=AIzaSyBCiIPv6fgrRVn3veTJeP6ihfhrw8AXwbY:55:317
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement