从坐标转换为像素

时间:2012-06-06 15:27:10

标签: coordinates pixel

我正在google v3地图上实现一个右键单击上下文菜单,我需要获取像素x和y才能正确定位菜单。我得到了lat和lng,任何人都有一个很好的解决方案来获得像素x和y?

最好的问候

Henkemota

2 个答案:

答案 0 :(得分:0)

index=x+(y*height)

x = index % width
y = index / height

答案 1 :(得分:0)

对上述答案的更正:

index=x+(y*width) 

//(不是y * height ...因为你正在拍摄一条完整的水平像素线(例如1280像素)并将其乘以x所在屏幕的线数(y),然后添加x以在下一整行中考虑x像素。)

x = index % width
y = index / height