Don't bind to ol.View projection property

This commit is contained in:
Frederic Junod
2014-08-07 12:59:15 +02:00
parent 0a963d4615
commit 0d6cc22bf0
4 changed files with 9 additions and 7 deletions

View File

@@ -42,9 +42,10 @@ ol.GeolocationProperty = {
*
* Example:
*
* var geolocation = new ol.Geolocation();
* // take the projection to use from the map's view
* geolocation.bindTo('projection', map.getView());
* var geolocation = new ol.Geolocation({
* // take the projection to use from the map's view
* projection: view.getprojection()
* });
* // listen to changes in position
* geolocation.on('change', function(evt) {
* window.console.log(geolocation.getPosition());