79472806

Date: 2025-02-27 13:25:29
Score: 4.5
Natty:
Report link

Thanks for your response. However it errors out at the getStreetView-function. My complete code below.

       function initialize() {

       var latlng = new google.maps.LatLng(52.207206, 4.866782);
       var myOptions = {
           zoom: GetPrevZoom(),
           mapTypeId: "OSM",
           streetViewControl: true,
           gestureHandling: "greedy",
           zoomControl: false,
           mapTypeControlOptions: {
               mapTypeIds: [
                   "OSM",
                   google.maps.MapTypeId.SATELLITE,
                   google.maps.MapTypeId.ROADMAP
               ]
           }

       };
       map = new google.maps.Map(document.getElementById("map-canvas"), myOptions);

       map.mapTypes.set("OSM", new google.maps.ImageMapType({
           getTileUrl: function (coord, zoom) {
               return "https://tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png";
           },
           tileSize: new google.maps.Size(256, 256),
           name: "OpenStreetMap",
           maxZoom: 19
       }));

       map.addListener('zoom_changed', function () {

           sessionStorage.setItem('zoomlevel', map.getZoom());

       });

       oms = new OverlappingMarkerSpiderfier(map, { markersWontMove: true, markersWontHide: true, keepSpiderfied: true });
       var iw = new google.maps.InfoWindow();

       map.overlayMapTypes.push(null);

   }

   var streetView = map.getStreetView();

   var miniMapDiv = document.createElement("div");
   miniMapDiv.style.width = "150px";
   miniMapDiv.style.height = "150px";
   miniMapDiv.style.position = "absolute";
   miniMapDiv.style.bottom = "10px";
   miniMapDiv.style.left = "10px";
   miniMapDiv.style.border = "2px solid black";
   miniMapDiv.style.zIndex = "5";
   document.getElementById("map-canvas").appendChild(miniMapDiv);

   var miniMapOptions = {
       zoom: 16,
       center: latlng,
       disableDefaultUI: true,
       draggable: false,
       scrollwheel: false,
       mapTypeId: google.maps.MapTypeId.ROADMAP
   };

   var miniMap = new google.maps.Map(miniMapDiv, miniMapOptions);
   var pegmanMarker = new google.maps.Marker({
       position: latlng,
       map: miniMap,
       icon: {
           url: "https://maps.gstatic.com/tactile/pegman_v4/pegman.png",
           scaledSize: new google.maps.Size(20, 40)
       }
   });

   streetView.addListener("position_changed", function () {
       var pos = streetView.getPosition();
       miniMap.setCenter(pos);
       pegmanMarker.setPosition(pos);
   });

   streetView.addListener("pov_changed", function () {
       pegmanMarker.setIcon({
           url: "https://maps.gstatic.com/tactile/pegman_v4/pegman.png",
           scaledSize: new google.maps.Size(20, 40),
           rotation: streetView.getPov().heading
       });
   });

Can you tell whats happening here?

Thanks again,

Ferdy

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Can you tell what
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ferdy Keler