Recently I found out the hard way that to convert between LatLngs and pixel coordinates on screen I shouldn't use the Projection class that is easily accessed through Map.getProjection, but instead I should use the MapCanvasProjection class that can only be accessed through OverlayView.

The latter is nice and handy if you are working with a custom overlay, but if you're not, it's really painful to get access to the MapCanvasProjection. So far I have solved this problem for myself by adding a method to the Map class that will give me easy access to the desired projection class:

google.maps.Map.prototype.getCanvasProjection = function() {
  if (!this.projectionOverlay) {
    this.projectionOverlay = new google.maps.OverlayView();
    this.projectionOverlay.onAdd = function(){};
    this.projectionOverlay.onRemove = function(){};
    this.projectionOverlay.draw = function(){};
    this.projectionOverlay.setMap(this);
  }
  return this.projectionOverlay.getProjection();
};

This all looks like a big hack to do something that should be trivial. And it ever more makes me wonder what does the google.maps.Projection class do? When I read the documentation it seems to me that Projection.fromLatLngToPoint does the same thing as MapCanvasProjection.fromLatLngToContainerPixel, but it does not. I'm puzzled.

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted
+100

Projection.fromLatLngToPoint means converting from Latitude Longitude to Mercantor projection. MapCanvasProjection does a projection to pixel (including Mercantor).

link|improve this answer
OK, I think I mostly get it now. Thanks. – Rene Saarsoo Apr 28 '11 at 12:52
Can you give +100 reputation? – Chibox Apr 28 '11 at 14:56
Sure, here you have it :) When I tried to do it yesterday, Stackoverflow sayd I can't do that. – Rene Saarsoo Apr 29 '11 at 7:30
feedback

Your Answer

 
or
required, but never shown

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