Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在我的 google v3 地图上实现右键单击上下文菜单,我需要获取像素 x 和 y 以正确定位菜单。我得到了 lat 和 lng,任何人都有一个很好的解决方案来获取像素 x 和 y?
此致
亨克莫塔
对上述答案的更正:
index=x+(y*width)
//(不是 y*height ... 因为您正在使用一条完整的水平像素线(例如 1280 像素)并将其乘以 x 所在的屏幕向下的行数 (y),然后添加 x 以说明x 像素在下一个完整的行中。)
x = index % width y = index / height
index=x+(y*height) x = index % width y = index / height