CARVIEW |
Select Language
HTTP/2 301
location: https://raw.githubusercontent.com/neilang/NAMapKit/v3.2.0/NAMapKit/NAMapViewDelegate.h
accept-ranges: bytes
age: 0
date: Sat, 11 Oct 2025 14:13:13 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210043-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760191993.101139,VS0,VE289
vary: Accept-Encoding
x-fastly-request-id: 93fd9b2f62a9fd96ee6356bcb24b65327c033015
content-length: 0
HTTP/2 200
cache-control: max-age=300
content-security-policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type: text/plain; charset=utf-8
etag: W/"2d80b07a423caac2dff4accfa5306b4ae2408ae9e18b990986c7782d349bf504"
strict-transport-security: max-age=31536000
x-content-type-options: nosniff
x-frame-options: deny
x-xss-protection: 1; mode=block
x-github-request-id: 1E91:E39B8:11B412:2C5C08:68EA65F9
content-encoding: gzip
accept-ranges: bytes
date: Sat, 11 Oct 2025 14:13:13 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210024-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760191993.457061,VS0,VE387
vary: Authorization,Accept-Encoding
access-control-allow-origin: *
cross-origin-resource-policy: cross-origin
x-fastly-request-id: 1960f91db0ad2be630c6fdc95ed9a3eafde1e0fa
expires: Sat, 11 Oct 2025 14:18:13 GMT
source-age: 0
content-length: 342
//
// NAMapViewDelegate.h
// NAMapKit
//
// Created by Daniel Doubrovkine on 3/10/14.
// Copyright (c) 2010-14 neilang.com. All rights reserved.
//
@class NAMapView;
@class NAAnnotation;
/**
* An NAMapView delegate.
*/
@protocol NAMapViewDelegate
@optional
/**
* An annotation has been tapped.
*
* @param mapView Map view on which the annotation has been tapped.
* @param annotation The annotation that has been tapped.
*/
- (void)mapView:(NAMapView *)mapView tappedOnAnnotation:(NAAnnotation *)annotation;
/**
* Zoom level has changed.
*
* @param mapView The map view on which the zoom level has changed.
* @param level The new zoom level.
*/
- (void)mapView:(NAMapView *)mapView hasChangedZoomLevel:(CGFloat)level;
@end