NMFMapViewTouchDelegate

@protocol NMFMapViewTouchDelegate <NSObject>

지도 터치에 대한 콜백 프로토콜.

  • 지도 심벌이 탭되면 호출되는 콜백 메서드.

    Declaration

    Objective-C

    - (BOOL)mapView:(nonnull NMFMapView *)mapView
        didTapSymbol:(nonnull NMFSymbol *)symbol;

    Swift

    optional func mapView(_ mapView: NMFMapView, didTap symbol: NMFSymbol) -> Bool

    Parameters

    mapView

    지도 객체.

    symbol

    탭된 심벌.

    Return Value

    YES일 경우 이벤트를 소비합니다. 그렇지 않을 경우 이벤트가 지도로 전달되어 mapView:didTapMap:point:가 호출됩니다.

  • 지도가 탭되면 호출되는 콜백 메서드.

    Declaration

    Objective-C

    - (void)mapView:(nonnull NMFMapView *)mapView
          didTapMap:(nonnull NMGLatLng *)latlng
              point:(CGPoint)point;

    Swift

    optional func mapView(_ mapView: NMFMapView, didTapMap latlng: Any!, point: CGPoint)

    Parameters

    latlng

    탭된 지점의 지도 좌표.

    point

    탭된 지점의 화면 좌표.