我在地图视图上绘制了一堆标记。 有关所有对象(纬度和经度)位置的信息存储在数组中。 为了优化性能,我不想绘制所有标记。我只想在我目前看到的区域中分配标记。但是我从Route Me API获得的关于位置/屏幕的唯一信息是:
center.latitude;
center.longitude;
但是这个值只返回我整个地图的中心,我想看到实际视图的中心位置(纬度和长度)。我也能够获得GPS位置,但不能获得屏幕的中心位置。你认为有一种简单的方法来获取这些信息吗?
这是我实施的一部分:
UIImage* object = [UIImage imageNamed:@"object.png"];
CLLocationCoordinate2D buoyLocation;
NSString* templatString;
NSString* templongString;
for (int i =0; i<(myArray.count); i=i+2)
{
templongString = [myArray objectAtIndex:i];
templatString = [myarray objectAtIndex:i+1];
objectLocation.latitude = [templatString floatValue];
objectLocation.longitude = [templongString floatValue];
myMarker = [[RMMarker alloc] initWithUIImage:object anchorPoint:CGPointMake(xspec, yspec)]; //0.5 1.0
[markerManager1 addMarker:myMarker AtLatLong:objectLocation];
}