ifish/Ifish/BMKMap3.3.0/BaiduMapAPI_Utils.framework/Headers/BMKOpenPoi.h

38 lines
949 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// BMKOpenPoi.h
// UtilsComponent
//
// Created by wzy on 15/3/26.
// Copyright (c) 2015年 baidu. All rights reserved.
//
#ifndef UtilsComponent_BMKOpenPoi_h
#define UtilsComponent_BMKOpenPoi_h
#import "BMKOpenPoiOption.h"
#import <BaiduMapAPI_Base/BMKTypes.h>
///调起百度地图 -- poi
///注从iphone百度地图 8.2.0版本开始支持
@interface BMKOpenPoi : NSObject
/**
* 调起百度地图poi详情页面
* 注从iphone百度地图 8.2.0版本开始支持
*@param option poi详情参数类BMKOpenPoiDetailOption
*@return 调起结果
*/
+ (BMKOpenErrorCode)openBaiduMapPoiDetailPage:(BMKOpenPoiDetailOption *) option;
/**
* 调起百度地图poi周边检索页面
* 注从iphone百度地图 8.2.0版本开始支持
*@param option poi周边参数类BMKOpenPoiNearbyOption
*@return 调起结果
*/
+ (BMKOpenErrorCode)openBaiduMapPoiNearbySearch:(BMKOpenPoiNearbyOption *) option;
@end
#endif