ThinkGeo.com    |     Documentation    |     Premium Support

Google Street View question

 Hi, 


I would like to know if there is a way to set the PointShape value on the client side ? and if yes would you be nice a provide the javascrip[t code fragment?


many thanks.


jm.


GoogleStreetView(new GoogleStreetView(new PointShape(-96.767019, 33.079402), 480, 320));

 


 



Hi Jean,


Here is the javescript code snippet,



        function ShowGoogleStreetView() {
            var map = Map1.GetOpenLayersMap();

            var streetView = { point: {x:-96.767019,y: 33.079402},w:200,h:200,enabled:true};
            var sv = new OpenLayers.Control.GStreetView(streetView);
            sv.id = 'streetView';
            map.addControl(sv);
        }


You can notice the “OpenLayers.Control.GStreetView “ object is a custom control we created based on openlayers control. And its parameter streetView is a Json object which you can modify according to your needs.


Hope it helps,


Edgar