I am new to Openlayers and I am moving my application from Google Map to Openlayers. And also successfully displaying Polygons (coordinates captured via Google Map in Decimal Degrees - default for Google Maps), When I am drawing the polygon on a layer and on onFeaturesAdded Event, while getting co-ordinates of added feature like this
var tArr = event.features[0].geometry.getVertices();
output comes out like
[POINT(-919690.32419922 -5068080.7227148),POINT(1780677.0106836 -6868325.6126367),POINT(1819812.7691602 -6868325.6126367)
But, while I am drawing this feature back to OpenLayers displays NOTHING.
Questions are :
1). Google Uses Decimal Degrees Notions to give points of Geometry, Openlayers give in which GIS notation ? (searched on web found nothing)
2). When I am saving co-ordinates in same Projection and redrawing it back, give nothing to me, why ?
thanks for any help.