I want to zoom to a particular house in the google mapS, but when I provide its bounds and lattitude and longitude, it does not show images as well as the particular house. Can anyone provide the solution for this?

link|improve this question
Could you show us your code? It's much easier to help that way. – Niklas Ringdahl Dec 21 '10 at 12:35
Yes the question has very little to go on - the problem could be in your code, your data provider, etc. You mention projection in the title: If you think this is the problem, look at the Proj4js docs to make sure your projection parameters are correct (OpenLayers uses Proj4js for reproductions) – winwaed Jan 2 '11 at 23:20
feedback

2 Answers

Solution would be probably to transporm coordinates first. Unfortunately when You pass coordinates to OpanLayers.LonLat(lon,lat) it is supposed to be WGS:84, while OpenLayer.Bounds() needs coordinates given in EPSG:900913. You should then use Proj4js.transform and pass transformed coordintes in EPSG:900913

link|improve this answer
Do yo know more exhausting explanation of this somewhere in web? – Lukasz Dziedzia May 12 '11 at 6:41
feedback

You can transform it like this one:

var map = new OpenLayers.Map('map');
var location.transform(map.getProjectionObject(), new OpenLayers.Projection("EPSG:900913"));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.