true]GeoPoint centerPoint = mapviewgetMapCenter();// 地图中心坐标 int tbSpan = mapviewgetLatitudeSpan();// 当前纬线的跨度(从地图的上边缘到下边缘) int lrSpan = mapviewgetLongitudeSpan();// 当前经度的跨度(从地图的左边缘到地图的右边缘) GeoPoint ltPoint = new GeoPoint(centerPointgetLatitudeE6() - tbSpan / 2, centerPointgetLongitudeE6() - lrSpan / 2);// 左上角坐标 GeoPoint rbPoint = new GeoPoint(centerPointgetLatitudeE6() + tbSpan / 2, centerPointgetLongitudeE6() + lrSpan / 2);// 右下角坐标 查看原帖>>
通过Touch的相应函数来获得:
- (void)touchesBegan:(NSSet )touches withEvent:(UIEvent )event
{
UITouch touch = [touches anyObject];
CGPoint touchPoint = [touch locationInView:self];
//touchPointx ,touchPointy 就是触点的坐标。
}
看些基础的教程里基本都会讲到这个的,
看到你的问题补充就不知道你想要写成什么样子的了。
给你两段代码把。
一、获取鼠标在屏幕上的坐标
'坐标显示在Text1,Text2
'建一个Timer1,Text1,Text2
'代码如下。
'============
Private Type POINTAPI
x As Long
y As Long
End Type
Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
Dim p As POINTAPI
Private Sub Form_Load()
Timer1Interval = 10
End Sub
Private Sub Timer1_Timer()
GetCursorPos p
Text1Text = px
Text2Text = py
End Sub
二、获取鼠标在窗体内的坐标
'坐标显示在标题上
'运行此程序需要再窗体添加控件Timer
Option Explicit
Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
Private Declare Function ScreenToClient Lib "user32" (ByVal hwnd As Long, lpPoint As POINTAPI) As Long
Private Type POINTAPI
x As Long
y As Long
End Type
Private Sub Form_Load()
Timer1Interval = 10 '设置获取鼠标坐标间隔
End Sub
Private Sub Timer1_Timer()
Dim P As POINTAPI
GetCursorPos P '获取鼠标在屏幕中的位置
ScreenToClient Mehwnd, P '转换为本窗体的坐标
Dim t As Boolean
t = Px >= 0 And Py >= 0 And Px < MeWidth / ScreenTwipsPerPixelX And Py <= MeHeight / ScreenTwipsPerPixelY
If t Then MeCaption = "x=" & Px & "y=" & Py '按像素显示坐标
'If t Then MeCaption = "x=" & Px ScreenTwipsPerPixelX & "y=" & Py ScreenTwipsPerPixelY '按缇显示坐标
End Sub
PS
新建一个文件,和你的屏幕尺寸一样大
然后按F键,使之全屏(可能要多按几次)
按F8,信息面面版中XY就是坐标
你在网页面,用鼠标指着某个点,不动
按ALT+TAB键,切换到PS,就会得到一个坐标。
以上就是关于百度android地图怎么获取当前屏幕中心点的坐标全部的内容,包括:百度android地图怎么获取当前屏幕中心点的坐标、ios 怎么获得触摸屏幕的坐标、vb 获取鼠标在窗口内的屏幕坐标等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)