Ejemplo n.º 1
0
    public void Zoom()
    {
        Debug.Log("XXXX" + _clusterMapPin.Location + _map.ZoomLevel);
        var mapScene = new MapSceneOfLocationAndZoomLevel(_clusterMapPin.Location, _map.ZoomLevel + 1.01f);

        _map.SetMapScene(mapScene);
    }
Ejemplo n.º 2
0
    public void Zoom()
    {
        Debug.Log("LoCATOn" + _mapPin.Location + " and " + _map.ZoomLevel);
        var mapScene = new MapSceneOfLocationAndZoomLevel(_mapPin.Location, _map.ZoomLevel + 1.01f);

        _map.SetMapScene(mapScene);
    }
Ejemplo n.º 3
0
    public void Zoom()

    {
        Debug.Log("Zooming to map pin  " + _mapPin.LocationChanged);
        var mapScene = new MapSceneOfLocationAndZoomLevel(_mapPin.Location, _map.ZoomLevel + 1.01f);

        _map.SetMapScene(mapScene);
    }
 public void Zoom()
 {
     if (_clusterMapPin != null)
     {
         Debug.Log("Zooming to cluster ");
         var mapScene = new MapSceneOfLocationAndZoomLevel(_clusterMapPin.Location, _map.ZoomLevel + 1.01f);
         _map.SetMapScene(mapScene);
     }
 }
Ejemplo n.º 5
0
    private void RPC_RunTour(double latitide_x, double longitude_y)
    {
        MapScene mapScene;

        Debug.Log(photonView1.OwnerActorNr + ": latlong: " + latlong);


        mapScene = new MapSceneOfLocationAndZoomLevel(new LatLon(latitide_x, longitude_y), 16.0f);

        mapRenderer.SetMapScene(mapScene);
    }
Ejemplo n.º 6
0
        public void MiniMapRender()
        {
            MiniMapRenderer = miniMap.GetComponent <MapRenderer>();

            currentMapPin.Location = new LatLon(currentLatitude, currentLongitude);
            Debug.Log("Here its: " + currentLatitude + currentLongitude);

            var mapScene = new MapSceneOfLocationAndZoomLevel(currentMapPin.Location, MiniMapRenderer.ZoomLevel + 0f);

            //_map.SetMapScene(mapScene);

            MiniMapRenderer.SetMapScene(mapScene);
            //
        }
Ejemplo n.º 7
0
    public void Zoom()
    {
        var mapScene = new MapSceneOfLocationAndZoomLevel(_mapPin.Location, _map.ZoomLevel + 1.01f);

        _map.SetMapScene(mapScene);
    }
Ejemplo n.º 8
0
        private void OnResetBasel()
        {
            var mapScene = new MapSceneOfLocationAndZoomLevel(new LatLon(47.559601, 7.588576), 14.74f);

            BigMapRenderer.SetMapScene(mapScene);
        }
Ejemplo n.º 9
0
        public void ZoomIntoPoint(double lat, double lon)
        {
            var mapScene = new MapSceneOfLocationAndZoomLevel(new LatLon(lat, lon), 19f);

            renderer.SetMapScene(mapScene);
        }