init project
This commit is contained in:
commit
1fb3d91106
|
@ -0,0 +1,12 @@
|
|||
.DS_Store
|
||||
.dart_tool/
|
||||
|
||||
.packages
|
||||
.pub/
|
||||
|
||||
build/
|
||||
.idea/
|
||||
*.iml
|
||||
**/pubspec.lock
|
||||
.settings/
|
||||
.project
|
|
@ -0,0 +1,10 @@
|
|||
# This file tracks properties of this Flutter project.
|
||||
# Used by Flutter tool to assess capabilities and perform upgrades etc.
|
||||
#
|
||||
# This file should be version controlled and should not be manually edited.
|
||||
|
||||
version:
|
||||
revision: 84f3d28555368a70270e9ac8390a9441df95e752
|
||||
channel: stable
|
||||
|
||||
project_type: plugin
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
## 1.0.0+1 - 2023-12-22.
|
||||
* fork from https://pub.dev/packages/amap_flutter_map
|
|
@ -0,0 +1,14 @@
|
|||
Copyright 2023 kuloud
|
||||
Copyright <2020> <lbs.amap.com>
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
|
@ -0,0 +1,113 @@
|
|||
# amap_map
|
||||
|
||||
基于[高德开放平台地图SDK](https://lbs.amap.com/api/)的flutter插件
|
||||
|
||||
## Usage
|
||||
使用Flutter插件,请参考[在Flutter里使用Packages](https://flutter.cn/docs/development/packages-and-plugins/using-packages), 添加amap_map的引用
|
||||
|
||||
## 准备工作
|
||||
* 登录[高德开放平台官网](https://lbs.amap.com/)申请ApiKey。Android平台申请配置key请参考[Android获取key](https://lbs.amap.com/api/poi-sdk-android/develop/create-project/get-key/?sug_index=2), iOS平台申请配置请参考[iOS获取key](https://lbs.amap.com/api/poi-sdk-ios/develop/create-project/get-key/?sug_index=1)。
|
||||
* 引入高德地图SDK,Android平台请参考[Android Sudio配置工程](https://lbs.amap.com/api/android-sdk/guide/create-project/android-studio-create-project), iOS平台请参考[ios安装地图SDK](https://lbs.amap.com/api/ios-sdk/guide/create-project/cocoapods)
|
||||
* iOS端插件使用特殊配置:Flutter 1.22.0 之前(之后的版本可以不添加该配置),iOS端的UiKitView还只是preview状态, 默认是不支持的, 需要手动打开开关, 需要在iOS工程的info.plist添加如下配置:
|
||||
``` XML
|
||||
<key>io.flutter.embedded_views_preview</key>
|
||||
<string>YES</string>
|
||||
```
|
||||
|
||||
## 使用示例
|
||||
``` Dart
|
||||
import 'package:amap_map_example/base_page.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:amap_map/amap_map.dart';
|
||||
import 'package:amap_map/amap_map.dart';
|
||||
|
||||
class ShowMapPage extends BasePage {
|
||||
ShowMapPage(String title, String subTitle) : super(title, subTitle);
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return _ShowMapPageBody();
|
||||
}
|
||||
}
|
||||
|
||||
class _ShowMapPageBody extends StatefulWidget {
|
||||
@override
|
||||
State<StatefulWidget> createState() => _ShowMapPageState();
|
||||
}
|
||||
|
||||
class _ShowMapPageState extends State<_ShowMapPageBody> {
|
||||
static final CameraPosition _kInitialPosition = const CameraPosition(
|
||||
target: LatLng(39.909187, 116.397451),
|
||||
zoom: 10.0,
|
||||
);
|
||||
List<Widget> _approvalNumberWidget = List<Widget>();
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final AMapWidget map = AMapWidget(
|
||||
initialCameraPosition: _kInitialPosition,
|
||||
onMapCreated: onMapCreated,
|
||||
);
|
||||
|
||||
return ConstrainedBox(
|
||||
constraints: BoxConstraints.expand(),
|
||||
child: Stack(
|
||||
alignment: Alignment.center,
|
||||
children: [
|
||||
Container(
|
||||
height: MediaQuery.of(context).size.height,
|
||||
width: MediaQuery.of(context).size.width,
|
||||
child: map,
|
||||
),
|
||||
Positioned(
|
||||
right: 10,
|
||||
bottom: 15,
|
||||
child: Container(
|
||||
alignment: Alignment.centerLeft,
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
children: _approvalNumberWidget),
|
||||
))
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
AMapController _mapController;
|
||||
void onMapCreated(AMapController controller) {
|
||||
setState(() {
|
||||
_mapController = controller;
|
||||
getApprovalNumber();
|
||||
});
|
||||
}
|
||||
|
||||
/// 获取审图号
|
||||
void getApprovalNumber() async {
|
||||
//普通地图审图号
|
||||
String mapContentApprovalNumber =
|
||||
await _mapController?.getMapContentApprovalNumber();
|
||||
//卫星地图审图号
|
||||
String satelliteImageApprovalNumber =
|
||||
await _mapController?.getSatelliteImageApprovalNumber();
|
||||
setState(() {
|
||||
if (null != mapContentApprovalNumber) {
|
||||
_approvalNumberWidget.add(Text(mapContentApprovalNumber));
|
||||
}
|
||||
if (null != satelliteImageApprovalNumber) {
|
||||
_approvalNumberWidget.add(Text(satelliteImageApprovalNumber));
|
||||
}
|
||||
});
|
||||
print('地图审图号(普通地图): $mapContentApprovalNumber');
|
||||
print('地图审图号(卫星地图): $satelliteImageApprovalNumber');
|
||||
}
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
## 已知问题:
|
||||
1. Flutter插件在iOS端,MapView销毁时,一定概率触发Main Thread Checker的报警,
|
||||
经过对比测试确认是Flutter的bug所致;https://github.com/flutter/flutter/issues/68490
|
||||
(对比1.25.0-8.1.pre版本已修复,从github的issues中得知,有其它开发着反馈1.24.0-6.0.pre已修复;该问题依赖Flutter升级修复)
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
*.iml
|
||||
.gradle
|
||||
/local.properties
|
||||
/.idea/workspace.xml
|
||||
/.idea/libraries
|
||||
.DS_Store
|
||||
/build
|
||||
/captures
|
|
@ -0,0 +1,38 @@
|
|||
group 'com.amap.flutter.amap_map'
|
||||
version '1.0'
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.5.0'
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.allprojects {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
}
|
||||
}
|
||||
|
||||
apply plugin: 'com.android.library'
|
||||
|
||||
android {
|
||||
compileSdkVersion 29
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 16
|
||||
}
|
||||
lintOptions {
|
||||
disable 'InvalidPackage'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly 'com.amap.api:3dmap:9.8.3'
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
org.gradle.jvmargs=-Xmx1536M
|
||||
android.useAndroidX=true
|
||||
android.enableJetifier=true
|
|
@ -0,0 +1,5 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip
|
|
@ -0,0 +1 @@
|
|||
rootProject.name = 'amap_map'
|
|
@ -0,0 +1,3 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.amap.flutter.amap_map">
|
||||
</manifest>
|
|
@ -0,0 +1,117 @@
|
|||
package com.amap.flutter.map;
|
||||
|
||||
import android.app.Activity;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.lifecycle.Lifecycle;
|
||||
import androidx.lifecycle.LifecycleOwner;
|
||||
|
||||
import com.amap.flutter.map.utils.LogUtil;
|
||||
|
||||
|
||||
import io.flutter.embedding.engine.plugins.FlutterPlugin;
|
||||
import io.flutter.embedding.engine.plugins.activity.ActivityAware;
|
||||
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding;
|
||||
import io.flutter.embedding.engine.plugins.lifecycle.FlutterLifecycleAdapter;
|
||||
import io.flutter.plugin.common.PluginRegistry;
|
||||
|
||||
/**
|
||||
* AmapFlutterMapPlugin
|
||||
*/
|
||||
public class AMapFlutterMapPlugin implements
|
||||
FlutterPlugin,
|
||||
ActivityAware {
|
||||
private static final String CLASS_NAME = "AMapFlutterMapPlugin";
|
||||
private FlutterPluginBinding pluginBinding;
|
||||
private Lifecycle lifecycle;
|
||||
|
||||
private static final String VIEW_TYPE = "com.amap.flutter.map";
|
||||
|
||||
public static void registerWith(PluginRegistry.Registrar registrar) {
|
||||
LogUtil.i(CLASS_NAME, "registerWith=====>");
|
||||
|
||||
final Activity activity = registrar.activity();
|
||||
if (activity == null) {
|
||||
LogUtil.w(CLASS_NAME, "activity is null!!!");
|
||||
return;
|
||||
}
|
||||
if (activity instanceof LifecycleOwner) {
|
||||
registrar
|
||||
.platformViewRegistry()
|
||||
.registerViewFactory(
|
||||
VIEW_TYPE,
|
||||
new AMapPlatformViewFactory(
|
||||
registrar.messenger(),
|
||||
new LifecycleProvider() {
|
||||
@Override
|
||||
public Lifecycle getLifecycle() {
|
||||
return ((LifecycleOwner) activity).getLifecycle();
|
||||
}
|
||||
}));
|
||||
} else {
|
||||
registrar
|
||||
.platformViewRegistry()
|
||||
.registerViewFactory(
|
||||
VIEW_TYPE,
|
||||
new AMapPlatformViewFactory(registrar.messenger(), new ProxyLifecycleProvider(activity)));
|
||||
}
|
||||
}
|
||||
|
||||
public AMapFlutterMapPlugin() {
|
||||
}
|
||||
|
||||
// FlutterPlugin
|
||||
|
||||
@Override
|
||||
public void onAttachedToEngine(@NonNull FlutterPluginBinding binding) {
|
||||
LogUtil.i(CLASS_NAME, "onAttachedToEngine==>");
|
||||
pluginBinding = binding;
|
||||
binding
|
||||
.getPlatformViewRegistry()
|
||||
.registerViewFactory(
|
||||
VIEW_TYPE,
|
||||
new AMapPlatformViewFactory(
|
||||
binding.getBinaryMessenger(),
|
||||
new LifecycleProvider() {
|
||||
@Nullable
|
||||
@Override
|
||||
public Lifecycle getLifecycle() {
|
||||
return lifecycle;
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDetachedFromEngine(@NonNull FlutterPluginBinding binding) {
|
||||
LogUtil.i(CLASS_NAME, "onDetachedFromEngine==>");
|
||||
pluginBinding = null;
|
||||
}
|
||||
|
||||
|
||||
// ActivityAware
|
||||
|
||||
@Override
|
||||
public void onAttachedToActivity(@NonNull ActivityPluginBinding binding) {
|
||||
LogUtil.i(CLASS_NAME, "onAttachedToActivity==>");
|
||||
lifecycle = FlutterLifecycleAdapter.getActivityLifecycle(binding);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDetachedFromActivity() {
|
||||
LogUtil.i(CLASS_NAME, "onDetachedFromActivity==>");
|
||||
lifecycle = null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onReattachedToActivityForConfigChanges(@NonNull ActivityPluginBinding binding) {
|
||||
LogUtil.i(CLASS_NAME, "onReattachedToActivityForConfigChanges==>");
|
||||
onAttachedToActivity(binding);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDetachedFromActivityForConfigChanges() {
|
||||
LogUtil.i(CLASS_NAME, "onDetachedFromActivityForConfigChanges==>");
|
||||
this.onDetachedFromActivity();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,215 @@
|
|||
package com.amap.flutter.map;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
|
||||
import com.amap.api.maps.AMapOptions;
|
||||
import com.amap.api.maps.model.CameraPosition;
|
||||
import com.amap.api.maps.model.CustomMapStyleOptions;
|
||||
import com.amap.api.maps.model.LatLngBounds;
|
||||
import com.amap.api.maps.model.MyLocationStyle;
|
||||
import com.amap.flutter.map.core.AMapOptionsSink;
|
||||
import com.amap.flutter.map.utils.LogUtil;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import io.flutter.plugin.common.BinaryMessenger;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/10/29 10:13 AM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
class AMapOptionsBuilder implements AMapOptionsSink {
|
||||
private static final String CLASS_NAME = "AMapOptionsBuilder";
|
||||
private final AMapOptions options = new AMapOptions();
|
||||
private CustomMapStyleOptions customMapStyleOptions;
|
||||
private MyLocationStyle myLocationStyle;
|
||||
|
||||
private float minZoomLevel = 3;
|
||||
private float maxZoomLevel = 20;
|
||||
private LatLngBounds latLngBounds;
|
||||
private boolean trafficEnabled = true;
|
||||
private boolean touchPoiEnabled = true;
|
||||
private boolean buildingsEnabled = true;
|
||||
private boolean labelsEnabled = true;
|
||||
|
||||
private float anchorX = 2.0F;
|
||||
private float anchorY = 2.0F;
|
||||
|
||||
private Object initialMarkers;
|
||||
|
||||
private Object initialPolylines;
|
||||
|
||||
private Object initialPolygons;
|
||||
|
||||
AMapPlatformView build(int id,
|
||||
Context context,
|
||||
BinaryMessenger binaryMessenger,
|
||||
LifecycleProvider lifecycleProvider) {
|
||||
try {
|
||||
//iOS端没有放大缩小UI, Android端强制隐藏
|
||||
options.zoomControlsEnabled(false);
|
||||
final AMapPlatformView aMapPlatformView = new AMapPlatformView(id, context, binaryMessenger, lifecycleProvider, options);
|
||||
|
||||
|
||||
if (null != customMapStyleOptions) {
|
||||
aMapPlatformView.getMapController().setCustomMapStyleOptions(customMapStyleOptions);
|
||||
}
|
||||
|
||||
if (null != myLocationStyle) {
|
||||
aMapPlatformView.getMapController().setMyLocationStyle(myLocationStyle);
|
||||
}
|
||||
if (anchorX >= 0
|
||||
&& anchorX <= 1.0
|
||||
&& anchorY <= 1.0
|
||||
&& anchorY >= 0) {
|
||||
|
||||
aMapPlatformView.getMapController().setScreenAnchor( anchorX, anchorY);
|
||||
}
|
||||
|
||||
aMapPlatformView.getMapController().setMinZoomLevel(minZoomLevel);
|
||||
aMapPlatformView.getMapController().setMaxZoomLevel(maxZoomLevel);
|
||||
|
||||
if (null != latLngBounds) {
|
||||
aMapPlatformView.getMapController().setLatLngBounds(latLngBounds);
|
||||
}
|
||||
|
||||
aMapPlatformView.getMapController().setTrafficEnabled(trafficEnabled);
|
||||
aMapPlatformView.getMapController().setTouchPoiEnabled(touchPoiEnabled);
|
||||
aMapPlatformView.getMapController().setBuildingsEnabled(buildingsEnabled);
|
||||
aMapPlatformView.getMapController().setLabelsEnabled(labelsEnabled);
|
||||
|
||||
|
||||
if (null != initialMarkers) {
|
||||
List<Object> markerList = (List<Object>) initialMarkers;
|
||||
aMapPlatformView.getMarkersController().addByList(markerList);
|
||||
}
|
||||
|
||||
if (null != initialPolylines) {
|
||||
List<Object> markerList = (List<Object>) initialPolylines;
|
||||
aMapPlatformView.getPolylinesController().addByList(markerList);
|
||||
}
|
||||
|
||||
if (null != initialPolygons) {
|
||||
List<Object> polygonList = (List<Object>) initialPolygons;
|
||||
aMapPlatformView.getPolygonsController().addByList(polygonList);
|
||||
}
|
||||
return aMapPlatformView;
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "build", e);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCamera(CameraPosition camera) {
|
||||
options.camera(camera);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMapType(int mapType) {
|
||||
options.mapType(mapType);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCustomMapStyleOptions(CustomMapStyleOptions customMapStyleOptions) {
|
||||
this.customMapStyleOptions = customMapStyleOptions;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMyLocationStyle(MyLocationStyle myLocationStyle) {
|
||||
this.myLocationStyle = myLocationStyle;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setScreenAnchor(float x, float y) {
|
||||
anchorX = x;
|
||||
anchorY = y;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMinZoomLevel(float minZoomLevel) {
|
||||
this.minZoomLevel = minZoomLevel;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMaxZoomLevel(float maxZoomLevel) {
|
||||
this.maxZoomLevel = maxZoomLevel;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLatLngBounds(LatLngBounds latLngBounds) {
|
||||
this.latLngBounds = latLngBounds;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setTrafficEnabled(boolean trafficEnabled) {
|
||||
this.trafficEnabled = trafficEnabled;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setTouchPoiEnabled(boolean touchPoiEnabled) {
|
||||
this.touchPoiEnabled = touchPoiEnabled;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBuildingsEnabled(boolean buildingsEnabled) {
|
||||
this.buildingsEnabled = buildingsEnabled;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLabelsEnabled(boolean labelsEnabled) {
|
||||
this.labelsEnabled = labelsEnabled;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCompassEnabled(boolean compassEnabled) {
|
||||
options.compassEnabled(compassEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setZoomGesturesEnabled(boolean zoomGesturesEnabled) {
|
||||
options.zoomGesturesEnabled(zoomGesturesEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setScrollGesturesEnabled(boolean scrollGesturesEnabled) {
|
||||
options.scrollGesturesEnabled(scrollGesturesEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setRotateGesturesEnabled(boolean rotateGesturesEnabled) {
|
||||
options.rotateGesturesEnabled(rotateGesturesEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setTiltGesturesEnabled(boolean tiltGesturesEnabled) {
|
||||
options.tiltGesturesEnabled(tiltGesturesEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setScaleEnabled(boolean scaleEnabled) {
|
||||
options.scaleControlsEnabled(scaleEnabled);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void setInitialMarkers(Object markersObject) {
|
||||
this.initialMarkers = markersObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInitialPolylines(Object polylinesObject) {
|
||||
this.initialPolylines = polylinesObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInitialPolygons(Object polygonsObject) {
|
||||
this.initialPolygons = polygonsObject;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,264 @@
|
|||
package com.amap.flutter.map;
|
||||
|
||||
import android.content.Context;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.lifecycle.DefaultLifecycleObserver;
|
||||
import androidx.lifecycle.LifecycleOwner;
|
||||
|
||||
import com.amap.api.maps.AMap;
|
||||
import com.amap.api.maps.AMapOptions;
|
||||
import com.amap.api.maps.TextureMapView;
|
||||
import com.amap.flutter.map.core.MapController;
|
||||
import com.amap.flutter.map.overlays.marker.MarkersController;
|
||||
import com.amap.flutter.map.overlays.polygon.PolygonsController;
|
||||
import com.amap.flutter.map.overlays.polyline.PolylinesController;
|
||||
import com.amap.flutter.map.utils.LogUtil;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding;
|
||||
import io.flutter.plugin.common.BinaryMessenger;
|
||||
import io.flutter.plugin.common.MethodCall;
|
||||
import io.flutter.plugin.common.MethodChannel;
|
||||
import io.flutter.plugin.platform.PlatformView;
|
||||
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/10/27 5:49 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public class AMapPlatformView
|
||||
implements
|
||||
DefaultLifecycleObserver,
|
||||
ActivityPluginBinding.OnSaveInstanceStateListener,
|
||||
MethodChannel.MethodCallHandler,
|
||||
PlatformView {
|
||||
private static final String CLASS_NAME = "AMapPlatformView";
|
||||
private final MethodChannel methodChannel;
|
||||
|
||||
private MapController mapController;
|
||||
private MarkersController markersController;
|
||||
private PolylinesController polylinesController;
|
||||
private PolygonsController polygonsController;
|
||||
|
||||
private TextureMapView mapView;
|
||||
|
||||
private boolean disposed = false;
|
||||
|
||||
private final Map<String, MyMethodCallHandler> myMethodCallHandlerMap;
|
||||
|
||||
AMapPlatformView(int id,
|
||||
Context context,
|
||||
BinaryMessenger binaryMessenger,
|
||||
LifecycleProvider lifecycleProvider,
|
||||
AMapOptions options) {
|
||||
|
||||
methodChannel = new MethodChannel(binaryMessenger, "amap_map_" + id);
|
||||
methodChannel.setMethodCallHandler(this);
|
||||
myMethodCallHandlerMap = new HashMap<String, MyMethodCallHandler>(8);
|
||||
|
||||
try {
|
||||
mapView = new TextureMapView(context, options);
|
||||
AMap amap = mapView.getMap();
|
||||
mapController = new MapController(methodChannel, mapView);
|
||||
markersController = new MarkersController(methodChannel, amap);
|
||||
polylinesController = new PolylinesController(methodChannel, amap);
|
||||
polygonsController = new PolygonsController(methodChannel, amap);
|
||||
initMyMethodCallHandlerMap();
|
||||
lifecycleProvider.getLifecycle().addObserver(this);
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "<init>", e);
|
||||
}
|
||||
}
|
||||
|
||||
private void initMyMethodCallHandlerMap() {
|
||||
String[] methodIdArray = mapController.getRegisterMethodIdArray();
|
||||
if (null != methodIdArray && methodIdArray.length > 0) {
|
||||
for (String methodId : methodIdArray) {
|
||||
myMethodCallHandlerMap.put(methodId, mapController);
|
||||
}
|
||||
}
|
||||
|
||||
methodIdArray = markersController.getRegisterMethodIdArray();
|
||||
if (null != methodIdArray && methodIdArray.length > 0) {
|
||||
for (String methodId : methodIdArray) {
|
||||
myMethodCallHandlerMap.put(methodId, markersController);
|
||||
}
|
||||
}
|
||||
|
||||
methodIdArray = polylinesController.getRegisterMethodIdArray();
|
||||
if (null != methodIdArray && methodIdArray.length > 0) {
|
||||
for (String methodId : methodIdArray) {
|
||||
myMethodCallHandlerMap.put(methodId, polylinesController);
|
||||
}
|
||||
}
|
||||
|
||||
methodIdArray = polygonsController.getRegisterMethodIdArray();
|
||||
if (null != methodIdArray && methodIdArray.length > 0) {
|
||||
for (String methodId : methodIdArray) {
|
||||
myMethodCallHandlerMap.put(methodId, polygonsController);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public MapController getMapController() {
|
||||
return mapController;
|
||||
}
|
||||
|
||||
public MarkersController getMarkersController() {
|
||||
return markersController;
|
||||
}
|
||||
|
||||
public PolylinesController getPolylinesController() {
|
||||
return polylinesController;
|
||||
}
|
||||
|
||||
public PolygonsController getPolygonsController() {
|
||||
return polygonsController;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void onMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
|
||||
LogUtil.i(CLASS_NAME, "onMethodCall==>" + call.method + ", arguments==> " + call.arguments);
|
||||
String methodId = call.method;
|
||||
if (myMethodCallHandlerMap.containsKey(methodId)) {
|
||||
myMethodCallHandlerMap.get(methodId).doMethodCall(call, result);
|
||||
} else {
|
||||
LogUtil.w(CLASS_NAME, "onMethodCall, the methodId: " + call.method + ", not implemented");
|
||||
result.notImplemented();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void onCreate(@NonNull LifecycleOwner owner) {
|
||||
LogUtil.i(CLASS_NAME, "onCreate==>");
|
||||
try {
|
||||
if (disposed) {
|
||||
return;
|
||||
}
|
||||
if (null != mapView) {
|
||||
mapView.onCreate(null);
|
||||
}
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "onCreate", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onStart(@NonNull LifecycleOwner owner) {
|
||||
LogUtil.i(CLASS_NAME, "onStart==>");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onResume(@NonNull LifecycleOwner owner) {
|
||||
LogUtil.i(CLASS_NAME, "onResume==>");
|
||||
try {
|
||||
if (disposed) {
|
||||
return;
|
||||
}
|
||||
if (null != mapView) {
|
||||
mapView.onResume();
|
||||
}
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "onResume", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPause(@NonNull LifecycleOwner owner) {
|
||||
LogUtil.i(CLASS_NAME, "onPause==>");
|
||||
try {
|
||||
if (disposed) {
|
||||
return;
|
||||
}
|
||||
mapView.onPause();
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "onPause", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onStop(@NonNull LifecycleOwner owner) {
|
||||
LogUtil.i(CLASS_NAME, "onStop==>");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDestroy(@NonNull LifecycleOwner owner) {
|
||||
LogUtil.i(CLASS_NAME, "onDestroy==>");
|
||||
try {
|
||||
if (disposed) {
|
||||
return;
|
||||
}
|
||||
destroyMapViewIfNecessary();
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "onDestroy", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSaveInstanceState(@NonNull Bundle bundle) {
|
||||
LogUtil.i(CLASS_NAME, "onDestroy==>");
|
||||
try {
|
||||
if (disposed) {
|
||||
return;
|
||||
}
|
||||
mapView.onSaveInstanceState(bundle);
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "onSaveInstanceState", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onRestoreInstanceState(@Nullable Bundle bundle) {
|
||||
LogUtil.i(CLASS_NAME, "onDestroy==>");
|
||||
try {
|
||||
if (disposed) {
|
||||
return;
|
||||
}
|
||||
mapView.onCreate(bundle);
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "onRestoreInstanceState", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public View getView() {
|
||||
LogUtil.i(CLASS_NAME, "getView==>");
|
||||
return mapView;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void dispose() {
|
||||
LogUtil.i(CLASS_NAME, "dispose==>");
|
||||
try {
|
||||
if (disposed) {
|
||||
return;
|
||||
}
|
||||
methodChannel.setMethodCallHandler(null);
|
||||
destroyMapViewIfNecessary();
|
||||
disposed = true;
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "dispose", e);
|
||||
}
|
||||
}
|
||||
|
||||
private void destroyMapViewIfNecessary() {
|
||||
if (mapView == null) {
|
||||
return;
|
||||
}
|
||||
mapView.onDestroy();
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,80 @@
|
|||
package com.amap.flutter.map;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.amap.api.maps.model.CameraPosition;
|
||||
import com.amap.flutter.map.utils.ConvertUtil;
|
||||
import com.amap.flutter.map.utils.LogUtil;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import io.flutter.plugin.common.BinaryMessenger;
|
||||
import io.flutter.plugin.common.StandardMessageCodec;
|
||||
import io.flutter.plugin.platform.PlatformView;
|
||||
import io.flutter.plugin.platform.PlatformViewFactory;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/10/27 4:08 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
class AMapPlatformViewFactory extends PlatformViewFactory {
|
||||
private static final String CLASS_NAME = "AMapPlatformViewFactory";
|
||||
private final BinaryMessenger binaryMessenger;
|
||||
private final LifecycleProvider lifecycleProvider;
|
||||
AMapPlatformViewFactory(BinaryMessenger binaryMessenger,
|
||||
LifecycleProvider lifecycleProvider) {
|
||||
super(StandardMessageCodec.INSTANCE);
|
||||
this.binaryMessenger = binaryMessenger;
|
||||
this.lifecycleProvider = lifecycleProvider;
|
||||
}
|
||||
|
||||
@Override
|
||||
public PlatformView create(Context context, int viewId, Object args) {
|
||||
final AMapOptionsBuilder builder = new AMapOptionsBuilder();
|
||||
Map<String, Object> params = null;
|
||||
try {
|
||||
ConvertUtil.density = context.getResources().getDisplayMetrics().density;
|
||||
params = (Map<String, Object>) args;
|
||||
LogUtil.i(CLASS_NAME,"create params==>" + params);
|
||||
if (params.containsKey("privacyStatement")) {
|
||||
ConvertUtil.setPrivacyStatement(context, params.get("privacyStatement"));
|
||||
}
|
||||
|
||||
Object options = ((Map<String, Object>) args).get("options");
|
||||
if(null != options) {
|
||||
ConvertUtil.interpretAMapOptions(options, builder);
|
||||
}
|
||||
|
||||
if (params.containsKey("initialCameraPosition")) {
|
||||
CameraPosition cameraPosition = ConvertUtil.toCameraPosition(params.get("initialCameraPosition"));
|
||||
builder.setCamera(cameraPosition);
|
||||
}
|
||||
|
||||
if (params.containsKey("markersToAdd")) {
|
||||
builder.setInitialMarkers(params.get("markersToAdd"));
|
||||
}
|
||||
if (params.containsKey("polylinesToAdd")) {
|
||||
builder.setInitialPolylines(params.get("polylinesToAdd"));
|
||||
}
|
||||
|
||||
if (params.containsKey("polygonsToAdd")) {
|
||||
builder.setInitialPolygons(params.get("polygonsToAdd"));
|
||||
}
|
||||
|
||||
|
||||
if (params.containsKey("apiKey")) {
|
||||
ConvertUtil.checkApiKey(params.get("apiKey"));
|
||||
}
|
||||
|
||||
if (params.containsKey("debugMode")) {
|
||||
LogUtil.isDebugMode = ConvertUtil.toBoolean(params.get("debugMode"));
|
||||
}
|
||||
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "create", e);
|
||||
}
|
||||
return builder.build(viewId, context, binaryMessenger, lifecycleProvider);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
package com.amap.flutter.map;
|
||||
|
||||
import androidx.lifecycle.Lifecycle;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/8 6:17 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public interface LifecycleProvider {
|
||||
Lifecycle getLifecycle();
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
package com.amap.flutter.map;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import io.flutter.plugin.common.MethodCall;
|
||||
import io.flutter.plugin.common.MethodChannel;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/10 9:47 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public interface MyMethodCallHandler {
|
||||
|
||||
public void doMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result);
|
||||
/**
|
||||
* 获取注册的{@link io.flutter.plugin.common.MethodCall#method}
|
||||
* @return
|
||||
*/
|
||||
public abstract String[] getRegisterMethodIdArray();
|
||||
}
|
|
@ -0,0 +1,99 @@
|
|||
package com.amap.flutter.map;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.app.Application;
|
||||
import android.os.Bundle;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.lifecycle.Lifecycle;
|
||||
import androidx.lifecycle.LifecycleOwner;
|
||||
import androidx.lifecycle.LifecycleRegistry;
|
||||
|
||||
import com.amap.flutter.map.utils.LogUtil;
|
||||
|
||||
/**
|
||||
* This class provides a {@link LifecycleOwner} for the activity driven by {@link
|
||||
* Application.ActivityLifecycleCallbacks}.
|
||||
*
|
||||
* <p>This is used in the case where a direct Lifecycle/Owner is not available.
|
||||
*/
|
||||
public class ProxyLifecycleProvider
|
||||
implements
|
||||
Application.ActivityLifecycleCallbacks,
|
||||
LifecycleOwner,
|
||||
LifecycleProvider {
|
||||
private static final String CLASS_NAME = "ProxyLifecycleProvider";
|
||||
private final LifecycleRegistry lifecycle = new LifecycleRegistry(this);
|
||||
private final int registrarActivityHashCode;
|
||||
|
||||
public ProxyLifecycleProvider(Activity activity) {
|
||||
this.registrarActivityHashCode = activity.hashCode();
|
||||
activity.getApplication().registerActivityLifecycleCallbacks(this);
|
||||
LogUtil.i(CLASS_NAME, "<init>");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityCreated(Activity activity, Bundle savedInstanceState) {
|
||||
if (activity.hashCode() != registrarActivityHashCode) {
|
||||
return;
|
||||
}
|
||||
lifecycle.handleLifecycleEvent(Lifecycle.Event.ON_CREATE);
|
||||
LogUtil.i(CLASS_NAME, "onActivityCreated==>");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityStarted(Activity activity) {
|
||||
if (activity.hashCode() != registrarActivityHashCode) {
|
||||
return;
|
||||
}
|
||||
lifecycle.handleLifecycleEvent(Lifecycle.Event.ON_START);
|
||||
LogUtil.i(CLASS_NAME, "onActivityStarted==>");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityResumed(Activity activity) {
|
||||
if (activity.hashCode() != registrarActivityHashCode) {
|
||||
return;
|
||||
}
|
||||
lifecycle.handleLifecycleEvent(Lifecycle.Event.ON_RESUME);
|
||||
LogUtil.i(CLASS_NAME, "onActivityResumed==>");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityPaused(Activity activity) {
|
||||
if (activity.hashCode() != registrarActivityHashCode) {
|
||||
return;
|
||||
}
|
||||
lifecycle.handleLifecycleEvent(Lifecycle.Event.ON_PAUSE);
|
||||
LogUtil.i(CLASS_NAME, "onActivityPaused==>");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityStopped(Activity activity) {
|
||||
if (activity.hashCode() != registrarActivityHashCode) {
|
||||
return;
|
||||
}
|
||||
lifecycle.handleLifecycleEvent(Lifecycle.Event.ON_STOP);
|
||||
LogUtil.i(CLASS_NAME, "onActivityStopped==>");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivitySaveInstanceState(Activity activity, Bundle outState) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityDestroyed(Activity activity) {
|
||||
if (activity.hashCode() != registrarActivityHashCode) {
|
||||
return;
|
||||
}
|
||||
activity.getApplication().unregisterActivityLifecycleCallbacks(this);
|
||||
lifecycle.handleLifecycleEvent(Lifecycle.Event.ON_DESTROY);
|
||||
LogUtil.i(CLASS_NAME, "onActivityDestroyed==>");
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public Lifecycle getLifecycle() {
|
||||
return lifecycle;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,59 @@
|
|||
package com.amap.flutter.map.core;
|
||||
|
||||
import com.amap.api.maps.model.CameraPosition;
|
||||
import com.amap.api.maps.model.CustomMapStyleOptions;
|
||||
import com.amap.api.maps.model.LatLngBounds;
|
||||
import com.amap.api.maps.model.MyLocationStyle;
|
||||
import com.amap.api.maps.model.MyTrafficStyle;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/10/29 9:56 AM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public interface AMapOptionsSink {
|
||||
|
||||
public void setCamera(CameraPosition camera);
|
||||
|
||||
public void setMapType(int mapType);
|
||||
|
||||
public void setCustomMapStyleOptions(CustomMapStyleOptions customMapStyleOptions);
|
||||
|
||||
public void setMyLocationStyle(MyLocationStyle myLocationStyle);
|
||||
|
||||
public void setScreenAnchor(float x, float y);
|
||||
|
||||
public void setMinZoomLevel(float minZoomLevel);
|
||||
|
||||
public void setMaxZoomLevel(float maxZoomLevel);
|
||||
|
||||
public void setLatLngBounds(LatLngBounds latLngBounds);
|
||||
|
||||
public void setTrafficEnabled(boolean trafficEnabled);
|
||||
|
||||
public void setTouchPoiEnabled(boolean touchPoiEnabled);
|
||||
|
||||
public void setBuildingsEnabled(boolean buildingsEnabled);
|
||||
|
||||
public void setLabelsEnabled(boolean labelsEnabled);
|
||||
|
||||
public void setCompassEnabled(boolean compassEnabled);
|
||||
|
||||
public void setScaleEnabled(boolean scaleEnabled);
|
||||
|
||||
|
||||
public void setZoomGesturesEnabled(boolean zoomGesturesEnabled);
|
||||
|
||||
public void setScrollGesturesEnabled(boolean scrollGesturesEnabled);
|
||||
|
||||
public void setRotateGesturesEnabled(boolean rotateGesturesEnabled);
|
||||
|
||||
public void setTiltGesturesEnabled(boolean tiltGesturesEnabled);
|
||||
|
||||
public void setInitialMarkers(Object initialMarkers);
|
||||
|
||||
public void setInitialPolylines(Object initialPolylines);
|
||||
|
||||
public void setInitialPolygons(Object initialPolygons);
|
||||
}
|
|
@ -0,0 +1,373 @@
|
|||
package com.amap.flutter.map.core;
|
||||
|
||||
import android.graphics.Bitmap;
|
||||
import android.location.Location;
|
||||
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import com.amap.api.maps.AMap;
|
||||
import com.amap.api.maps.CameraUpdate;
|
||||
import com.amap.api.maps.CameraUpdateFactory;
|
||||
import com.amap.api.maps.TextureMapView;
|
||||
import com.amap.api.maps.model.CameraPosition;
|
||||
import com.amap.api.maps.model.CustomMapStyleOptions;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
import com.amap.api.maps.model.LatLngBounds;
|
||||
import com.amap.api.maps.model.MyLocationStyle;
|
||||
import com.amap.api.maps.model.Poi;
|
||||
import com.amap.flutter.map.MyMethodCallHandler;
|
||||
import com.amap.flutter.map.utils.Const;
|
||||
import com.amap.flutter.map.utils.ConvertUtil;
|
||||
import com.amap.flutter.map.utils.LogUtil;
|
||||
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import io.flutter.plugin.common.MethodCall;
|
||||
import io.flutter.plugin.common.MethodChannel;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/11 7:00 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public class MapController
|
||||
implements MyMethodCallHandler,
|
||||
AMapOptionsSink,
|
||||
AMap.OnMapLoadedListener,
|
||||
AMap.OnMyLocationChangeListener,
|
||||
AMap.OnCameraChangeListener,
|
||||
AMap.OnMapClickListener,
|
||||
AMap.OnMapLongClickListener,
|
||||
AMap.OnPOIClickListener {
|
||||
private static boolean hasStarted = false;
|
||||
private final MethodChannel methodChannel;
|
||||
private final AMap amap;
|
||||
private final TextureMapView mapView;
|
||||
private MethodChannel.Result mapReadyResult;
|
||||
protected int[] myArray = {};
|
||||
|
||||
private static final String CLASS_NAME = "MapController";
|
||||
|
||||
private boolean mapLoaded = false;
|
||||
|
||||
public MapController(MethodChannel methodChannel, TextureMapView mapView) {
|
||||
this.methodChannel = methodChannel;
|
||||
this.mapView = mapView;
|
||||
amap = mapView.getMap();
|
||||
|
||||
amap.addOnMapLoadedListener(this);
|
||||
amap.addOnMyLocationChangeListener(this);
|
||||
amap.addOnCameraChangeListener(this);
|
||||
amap.addOnMapLongClickListener(this);
|
||||
amap.addOnMapClickListener(this);
|
||||
amap.addOnPOIClickListener(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] getRegisterMethodIdArray() {
|
||||
return Const.METHOD_ID_LIST_FOR_MAP;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void doMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
|
||||
LogUtil.i(CLASS_NAME, "doMethodCall===>" + call.method);
|
||||
if (null == amap) {
|
||||
LogUtil.w(CLASS_NAME, "onMethodCall amap is null!!!");
|
||||
return;
|
||||
}
|
||||
switch (call.method) {
|
||||
case Const.METHOD_MAP_WAIT_FOR_MAP:
|
||||
if (mapLoaded) {
|
||||
result.success(null);
|
||||
return;
|
||||
}
|
||||
mapReadyResult = result;
|
||||
break;
|
||||
case Const.METHOD_MAP_SATELLITE_IMAGE_APPROVAL_NUMBER:
|
||||
if (null != amap) {
|
||||
result.success(amap.getSatelliteImageApprovalNumber());
|
||||
}
|
||||
break;
|
||||
case Const.METHOD_MAP_CONTENT_APPROVAL_NUMBER:
|
||||
if (null != amap) {
|
||||
result.success(amap.getMapContentApprovalNumber());
|
||||
}
|
||||
break;
|
||||
case Const.METHOD_MAP_UPDATE:
|
||||
if (amap != null) {
|
||||
ConvertUtil.interpretAMapOptions(call.argument("options"), this);
|
||||
result.success(ConvertUtil.cameraPositionToMap(getCameraPosition()));
|
||||
}
|
||||
break;
|
||||
case Const.METHOD_MAP_MOVE_CAMERA:
|
||||
if (null != amap) {
|
||||
final CameraUpdate cameraUpdate = ConvertUtil.toCameraUpdate(call.argument("cameraUpdate"));
|
||||
final Object animatedObject = call.argument("animated");
|
||||
final Object durationObject = call.argument("duration");
|
||||
|
||||
moveCamera(cameraUpdate, animatedObject, durationObject);
|
||||
}
|
||||
break;
|
||||
case Const.METHOD_MAP_SET_RENDER_FPS:
|
||||
if (null != amap) {
|
||||
amap.setRenderFps((Integer) call.argument("fps"));
|
||||
result.success(null);
|
||||
}
|
||||
break;
|
||||
case Const.METHOD_MAP_TAKE_SNAPSHOT:
|
||||
if (amap != null) {
|
||||
final MethodChannel.Result _result = result;
|
||||
amap.getMapScreenShot(new AMap.OnMapScreenShotListener() {
|
||||
@Override
|
||||
public void onMapScreenShot(Bitmap bitmap) {
|
||||
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
||||
bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
|
||||
byte[] byteArray = stream.toByteArray();
|
||||
bitmap.recycle();
|
||||
_result.success(byteArray);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMapScreenShot(Bitmap bitmap, int i) {
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
break;
|
||||
case Const.METHOD_MAP_CLEAR_DISK:
|
||||
if (null != amap) {
|
||||
amap.removecache();
|
||||
result.success(null);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
LogUtil.w(CLASS_NAME, "onMethodCall not find methodId:" + call.method);
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMapLoaded() {
|
||||
LogUtil.i(CLASS_NAME, "onMapLoaded==>");
|
||||
try {
|
||||
mapLoaded = true;
|
||||
if (null != mapReadyResult) {
|
||||
mapReadyResult.success(null);
|
||||
mapReadyResult = null;
|
||||
}
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "onMapLoaded", e);
|
||||
}
|
||||
if (LogUtil.isDebugMode && !hasStarted) {
|
||||
hasStarted = true;
|
||||
int index = myArray[0];
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCamera(CameraPosition camera) {
|
||||
amap.moveCamera(CameraUpdateFactory.newCameraPosition(camera));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMapType(int mapType) {
|
||||
amap.setMapType(mapType);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCustomMapStyleOptions(CustomMapStyleOptions customMapStyleOptions) {
|
||||
if (null != amap) {
|
||||
amap.setCustomMapStyle(customMapStyleOptions);
|
||||
}
|
||||
}
|
||||
|
||||
private boolean myLocationShowing = false;
|
||||
|
||||
@Override
|
||||
public void setMyLocationStyle(MyLocationStyle myLocationStyle) {
|
||||
if (null != amap) {
|
||||
myLocationShowing = myLocationStyle.isMyLocationShowing();
|
||||
amap.setMyLocationEnabled(myLocationShowing);
|
||||
amap.setMyLocationStyle(myLocationStyle);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setScreenAnchor(float x, float y) {
|
||||
amap.setPointToCenter(Float.valueOf(mapView.getWidth() * x).intValue(), Float.valueOf(mapView.getHeight() * y).intValue());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMinZoomLevel(float minZoomLevel) {
|
||||
amap.setMinZoomLevel(minZoomLevel);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMaxZoomLevel(float maxZoomLevel) {
|
||||
amap.setMaxZoomLevel(maxZoomLevel);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLatLngBounds(LatLngBounds latLngBounds) {
|
||||
amap.setMapStatusLimits(latLngBounds);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setTrafficEnabled(boolean trafficEnabled) {
|
||||
amap.setTrafficEnabled(trafficEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setTouchPoiEnabled(boolean touchPoiEnabled) {
|
||||
amap.setTouchPoiEnable(touchPoiEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBuildingsEnabled(boolean buildingsEnabled) {
|
||||
amap.showBuildings(buildingsEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLabelsEnabled(boolean labelsEnabled) {
|
||||
amap.showMapText(labelsEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCompassEnabled(boolean compassEnabled) {
|
||||
amap.getUiSettings().setCompassEnabled(compassEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setScaleEnabled(boolean scaleEnabled) {
|
||||
amap.getUiSettings().setScaleControlsEnabled(scaleEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setZoomGesturesEnabled(boolean zoomGesturesEnabled) {
|
||||
amap.getUiSettings().setZoomGesturesEnabled(zoomGesturesEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setScrollGesturesEnabled(boolean scrollGesturesEnabled) {
|
||||
amap.getUiSettings().setScrollGesturesEnabled(scrollGesturesEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setRotateGesturesEnabled(boolean rotateGesturesEnabled) {
|
||||
amap.getUiSettings().setRotateGesturesEnabled(rotateGesturesEnabled);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setTiltGesturesEnabled(boolean tiltGesturesEnabled) {
|
||||
amap.getUiSettings().setTiltGesturesEnabled(tiltGesturesEnabled);
|
||||
}
|
||||
|
||||
private CameraPosition getCameraPosition() {
|
||||
if (null != amap) {
|
||||
return amap.getCameraPosition();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMyLocationChange(Location location) {
|
||||
if (null != methodChannel && myLocationShowing) {
|
||||
final Map<String, Object> arguments = new HashMap<String, Object>(2);
|
||||
arguments.put("location", ConvertUtil.location2Map(location));
|
||||
methodChannel.invokeMethod("location#changed", arguments);
|
||||
LogUtil.i(CLASS_NAME, "onMyLocationChange===>" + arguments);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCameraChange(CameraPosition cameraPosition) {
|
||||
if (null != methodChannel) {
|
||||
final Map<String, Object> arguments = new HashMap<String, Object>(2);
|
||||
arguments.put("position", ConvertUtil.cameraPositionToMap(cameraPosition));
|
||||
methodChannel.invokeMethod("camera#onMove", arguments);
|
||||
LogUtil.i(CLASS_NAME, "onCameraChange===>" + arguments);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCameraChangeFinish(CameraPosition cameraPosition) {
|
||||
if (null != methodChannel) {
|
||||
final Map<String, Object> arguments = new HashMap<String, Object>(2);
|
||||
arguments.put("position", ConvertUtil.cameraPositionToMap(cameraPosition));
|
||||
methodChannel.invokeMethod("camera#onMoveEnd", arguments);
|
||||
LogUtil.i(CLASS_NAME, "onCameraChangeFinish===>" + arguments);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void onMapClick(LatLng latLng) {
|
||||
if (null != methodChannel) {
|
||||
final Map<String, Object> arguments = new HashMap<String, Object>(2);
|
||||
arguments.put("latLng", ConvertUtil.latLngToList(latLng));
|
||||
methodChannel.invokeMethod("map#onTap", arguments);
|
||||
LogUtil.i(CLASS_NAME, "onMapClick===>" + arguments);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMapLongClick(LatLng latLng) {
|
||||
if (null != methodChannel) {
|
||||
final Map<String, Object> arguments = new HashMap<String, Object>(2);
|
||||
arguments.put("latLng", ConvertUtil.latLngToList(latLng));
|
||||
methodChannel.invokeMethod("map#onLongPress", arguments);
|
||||
LogUtil.i(CLASS_NAME, "onMapLongClick===>" + arguments);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPOIClick(Poi poi) {
|
||||
if (null != methodChannel) {
|
||||
final Map<String, Object> arguments = new HashMap<String, Object>(2);
|
||||
arguments.put("poi", ConvertUtil.poiToMap(poi));
|
||||
methodChannel.invokeMethod("map#onPoiTouched", arguments);
|
||||
LogUtil.i(CLASS_NAME, "onPOIClick===>" + arguments);
|
||||
}
|
||||
}
|
||||
|
||||
private void moveCamera(CameraUpdate cameraUpdate, Object animatedObject, Object durationObject) {
|
||||
boolean animated = false;
|
||||
long duration = 250;
|
||||
if (null != animatedObject) {
|
||||
animated = (Boolean) animatedObject;
|
||||
}
|
||||
if (null != durationObject) {
|
||||
duration = ((Number) durationObject).intValue();
|
||||
}
|
||||
if (null != amap) {
|
||||
if (animated) {
|
||||
amap.animateCamera(cameraUpdate, duration, null);
|
||||
} else {
|
||||
amap.moveCamera(cameraUpdate);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInitialMarkers(Object initialMarkers) {
|
||||
//不实现
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInitialPolylines(Object initialPolylines) {
|
||||
//不实现
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInitialPolygons(Object polygonsObject) {
|
||||
//不实现
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
package com.amap.flutter.map.overlays;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import com.amap.api.maps.AMap;
|
||||
import com.amap.api.maps.TextureMapView;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import io.flutter.plugin.common.MethodChannel;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/10 7:42 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public abstract class AbstractOverlayController<T> {
|
||||
protected final Map<String, T> controllerMapByDartId;
|
||||
protected final Map<String, String> idMapByOverlyId;
|
||||
protected final MethodChannel methodChannel;
|
||||
protected final AMap amap;
|
||||
public AbstractOverlayController(MethodChannel methodChannel, AMap amap){
|
||||
this.methodChannel = methodChannel;
|
||||
this.amap = amap;
|
||||
controllerMapByDartId = new HashMap<String, T>(12);
|
||||
idMapByOverlyId = new HashMap<String, String>(12);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,111 @@
|
|||
package com.amap.flutter.map.overlays.marker;
|
||||
|
||||
import com.amap.api.maps.model.BitmapDescriptor;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
import com.amap.api.maps.model.Marker;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/6 6:18 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
class MarkerController implements MarkerOptionsSink {
|
||||
private final Marker marker;
|
||||
private final String markerId;
|
||||
|
||||
MarkerController(Marker marker) {
|
||||
this.marker = marker;
|
||||
markerId = marker.getId();
|
||||
}
|
||||
|
||||
public String getMarkerId() {
|
||||
return markerId;
|
||||
}
|
||||
|
||||
public void remove() {
|
||||
if (null != marker) {
|
||||
marker.remove();
|
||||
}
|
||||
}
|
||||
|
||||
public LatLng getPosition() {
|
||||
if(null != marker) {
|
||||
return marker.getPosition();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setAlpha(float alpha) {
|
||||
marker.setAlpha(alpha);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setAnchor(float u, float v) {
|
||||
marker.setAnchor(u, v);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDraggable(boolean draggable) {
|
||||
marker.setDraggable(draggable);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setFlat(boolean flat) {
|
||||
marker.setFlat(flat);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setIcon(BitmapDescriptor bitmapDescriptor) {
|
||||
marker.setIcon(bitmapDescriptor);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setTitle(String title) {
|
||||
marker.setTitle(title);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setSnippet(String snippet) {
|
||||
marker.setSnippet(snippet);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPosition(LatLng position) {
|
||||
marker.setPosition(position);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setRotation(float rotation) {
|
||||
marker.setRotateAngle(rotation);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setVisible(boolean visible) {
|
||||
marker.setVisible(visible);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setZIndex(float zIndex) {
|
||||
marker.setZIndex(zIndex);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInfoWindowEnable(boolean enable) {
|
||||
marker.setInfoWindowEnable(enable);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setClickable(boolean clickable) {
|
||||
marker.setClickable(clickable);
|
||||
}
|
||||
|
||||
public void showInfoWindow() {
|
||||
marker.showInfoWindow();
|
||||
}
|
||||
|
||||
public void hideInfoWindow() {
|
||||
marker.hideInfoWindow();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,89 @@
|
|||
package com.amap.flutter.map.overlays.marker;
|
||||
|
||||
import com.amap.api.maps.model.BitmapDescriptor;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
import com.amap.api.maps.model.MarkerOptions;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/6 6:17 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
class MarkerOptionsBuilder implements MarkerOptionsSink {
|
||||
final MarkerOptions markerOptions;
|
||||
|
||||
MarkerOptionsBuilder() {
|
||||
this.markerOptions = new MarkerOptions();
|
||||
}
|
||||
|
||||
public MarkerOptions build() {
|
||||
return markerOptions;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setAlpha(float alpha) {
|
||||
markerOptions.alpha(alpha);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setAnchor(float u, float v) {
|
||||
markerOptions.anchor(u, v);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void setDraggable(boolean draggable) {
|
||||
markerOptions.draggable(draggable);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setFlat(boolean flat) {
|
||||
markerOptions.setFlat(flat);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setIcon(BitmapDescriptor bitmapDescriptor) {
|
||||
markerOptions.icon(bitmapDescriptor);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setTitle(String title) {
|
||||
markerOptions.title(title);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void setSnippet(String snippet) {
|
||||
markerOptions.snippet(snippet);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPosition(LatLng position) {
|
||||
markerOptions.position(position);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setRotation(float rotation) {
|
||||
markerOptions.rotateAngle(rotation);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setVisible(boolean visible) {
|
||||
markerOptions.visible(visible);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setZIndex(float zIndex) {
|
||||
markerOptions.zIndex(zIndex);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInfoWindowEnable(boolean enable) {
|
||||
markerOptions.infoWindowEnable(enable);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setClickable(boolean clickable) {
|
||||
}
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
package com.amap.flutter.map.overlays.marker;
|
||||
|
||||
import com.amap.api.maps.model.BitmapDescriptor;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/6 6:12 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public interface MarkerOptionsSink {
|
||||
void setAlpha(float alpha);
|
||||
|
||||
void setAnchor(float u, float v);
|
||||
|
||||
void setDraggable(boolean draggable);
|
||||
|
||||
void setFlat(boolean flat);
|
||||
|
||||
void setIcon(BitmapDescriptor bitmapDescriptor);
|
||||
|
||||
void setTitle(String title);
|
||||
|
||||
void setSnippet(String snippet);
|
||||
|
||||
void setPosition(LatLng position);
|
||||
|
||||
void setRotation(float rotation);
|
||||
|
||||
void setVisible(boolean visible);
|
||||
|
||||
void setZIndex(float zIndex);
|
||||
|
||||
void setInfoWindowEnable(boolean enable);
|
||||
|
||||
void setClickable(boolean clickable);
|
||||
|
||||
}
|
|
@ -0,0 +1,98 @@
|
|||
package com.amap.flutter.map.overlays.marker;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
import com.amap.flutter.map.overlays.marker.MarkerOptionsSink;
|
||||
import com.amap.flutter.map.utils.ConvertUtil;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/6 8:06 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public class MarkerUtil {
|
||||
public static String interpretMarkerOptions(Object o, MarkerOptionsSink sink) {
|
||||
if (null == o) {
|
||||
return null;
|
||||
}
|
||||
final Map<?, ?> data = ConvertUtil.toMap(o);
|
||||
final Object alpha = data.get("alpha");
|
||||
if (alpha != null) {
|
||||
sink.setAlpha(ConvertUtil.toFloat(alpha));
|
||||
}
|
||||
final Object anchor = data.get("anchor");
|
||||
if (anchor != null) {
|
||||
final List<?> anchorData = ConvertUtil.toList(anchor);
|
||||
sink.setAnchor(ConvertUtil.toFloat(anchorData.get(0)), ConvertUtil.toFloat(anchorData.get(1)));
|
||||
}
|
||||
final Object consumeTapEvents = data.get("consumeTapEvents");
|
||||
final Object draggable = data.get("draggable");
|
||||
if (draggable != null) {
|
||||
sink.setDraggable(ConvertUtil.toBoolean(draggable));
|
||||
}
|
||||
final Object flat = data.get("flat");
|
||||
if (flat != null) {
|
||||
sink.setFlat(ConvertUtil.toBoolean(flat));
|
||||
}
|
||||
final Object icon = data.get("icon");
|
||||
if (icon != null) {
|
||||
sink.setIcon(ConvertUtil.toBitmapDescriptor(icon));
|
||||
}
|
||||
|
||||
final Object infoWindow = data.get("infoWindow");
|
||||
if (infoWindow != null) {
|
||||
interpretInfoWindowOptions(sink, (Map<String, Object>) infoWindow);
|
||||
}
|
||||
final Object position = data.get("position");
|
||||
if (position != null) {
|
||||
sink.setPosition(ConvertUtil.toLatLng(position));
|
||||
}
|
||||
final Object rotation = data.get("rotation");
|
||||
if (rotation != null) {
|
||||
sink.setRotation(Math.abs(360- ConvertUtil.toFloat(rotation)));
|
||||
}
|
||||
final Object visible = data.get("visible");
|
||||
if (visible != null) {
|
||||
sink.setVisible(ConvertUtil.toBoolean(visible));
|
||||
}
|
||||
final Object zIndex = data.get("zIndex");
|
||||
if (zIndex != null) {
|
||||
sink.setZIndex(ConvertUtil.toFloat(zIndex));
|
||||
}
|
||||
|
||||
final Object infoWindowEnable = data.get("infoWindowEnable");
|
||||
|
||||
if(infoWindowEnable != null) {
|
||||
sink.setInfoWindowEnable(ConvertUtil.toBoolean(infoWindowEnable));
|
||||
}
|
||||
|
||||
final Object clickable = data.get("clickable");
|
||||
if (null != clickable) {
|
||||
sink.setClickable(ConvertUtil.toBoolean(clickable));
|
||||
}
|
||||
|
||||
final String markerId = (String) data.get("id");
|
||||
if (markerId == null) {
|
||||
throw new IllegalArgumentException("markerId was null");
|
||||
} else {
|
||||
return markerId;
|
||||
}
|
||||
}
|
||||
|
||||
private static void interpretInfoWindowOptions(
|
||||
MarkerOptionsSink sink, Map<String, Object> infoWindow) {
|
||||
String title = (String) infoWindow.get("title");
|
||||
String snippet = (String) infoWindow.get("snippet");
|
||||
// snippet is nullable.
|
||||
if (!TextUtils.isEmpty(title)) {
|
||||
sink.setTitle(title);
|
||||
}
|
||||
if (!TextUtils.isEmpty(snippet)) {
|
||||
sink.setSnippet(snippet);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,227 @@
|
|||
package com.amap.flutter.map.overlays.marker;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import com.amap.api.maps.AMap;
|
||||
import com.amap.api.maps.TextureMapView;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
import com.amap.api.maps.model.Marker;
|
||||
import com.amap.api.maps.model.MarkerOptions;
|
||||
import com.amap.api.maps.model.Poi;
|
||||
import com.amap.api.maps.model.Polyline;
|
||||
import com.amap.flutter.map.MyMethodCallHandler;
|
||||
import com.amap.flutter.map.overlays.AbstractOverlayController;
|
||||
import com.amap.flutter.map.utils.Const;
|
||||
import com.amap.flutter.map.utils.ConvertUtil;
|
||||
import com.amap.flutter.map.utils.LogUtil;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import io.flutter.plugin.common.MethodCall;
|
||||
import io.flutter.plugin.common.MethodChannel;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/6 5:38 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public class MarkersController
|
||||
extends AbstractOverlayController<MarkerController>
|
||||
implements MyMethodCallHandler,
|
||||
AMap.OnMapClickListener,
|
||||
AMap.OnMarkerClickListener,
|
||||
AMap.OnMarkerDragListener,
|
||||
AMap.OnPOIClickListener {
|
||||
private static final String CLASS_NAME = "MarkersController";
|
||||
private String selectedMarkerDartId;
|
||||
|
||||
public MarkersController(MethodChannel methodChannel, AMap amap) {
|
||||
super(methodChannel, amap);
|
||||
amap.addOnMarkerClickListener(this);
|
||||
amap.addOnMarkerDragListener(this);
|
||||
amap.addOnMapClickListener(this);
|
||||
amap.addOnPOIClickListener(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] getRegisterMethodIdArray() {
|
||||
return Const.METHOD_ID_LIST_FOR_MARKER;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void doMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
|
||||
LogUtil.i(CLASS_NAME, "doMethodCall===>" + call.method);
|
||||
switch (call.method) {
|
||||
case Const.METHOD_MARKER_UPDATE:
|
||||
invokeMarkerOptions(call, result);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 执行主动方法更新marker
|
||||
*
|
||||
* @param methodCall
|
||||
* @param result
|
||||
*/
|
||||
public void invokeMarkerOptions(MethodCall methodCall, MethodChannel.Result result) {
|
||||
if (null == methodCall) {
|
||||
return;
|
||||
}
|
||||
Object markersToAdd = methodCall.argument("markersToAdd");
|
||||
addByList((List<Object>) markersToAdd);
|
||||
Object markersToChange = methodCall.argument("markersToChange");
|
||||
updateByList((List<Object>) markersToChange);
|
||||
Object markerIdsToRemove = methodCall.argument("markerIdsToRemove");
|
||||
removeByIdList((List<Object>) markerIdsToRemove);
|
||||
result.success(null);
|
||||
}
|
||||
|
||||
public void addByList(List<Object> markersToAdd) {
|
||||
if (markersToAdd != null) {
|
||||
for (Object markerToAdd : markersToAdd) {
|
||||
add(markerToAdd);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void add(Object markerObj) {
|
||||
if (null != amap) {
|
||||
MarkerOptionsBuilder builder = new MarkerOptionsBuilder();
|
||||
String dartMarkerId = MarkerUtil.interpretMarkerOptions(markerObj, builder);
|
||||
if (!TextUtils.isEmpty(dartMarkerId)) {
|
||||
MarkerOptions markerOptions = builder.build();
|
||||
final Marker marker = amap.addMarker(markerOptions);
|
||||
Object clickable = ConvertUtil.getKeyValueFromMapObject(markerObj, "clickable");
|
||||
if (null != clickable) {
|
||||
marker.setClickable(ConvertUtil.toBoolean(clickable));
|
||||
}
|
||||
MarkerController markerController = new MarkerController(marker);
|
||||
controllerMapByDartId.put(dartMarkerId, markerController);
|
||||
idMapByOverlyId.put(marker.getId(), dartMarkerId);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void updateByList(List<Object> markersToChange) {
|
||||
if (markersToChange != null) {
|
||||
for (Object markerToChange : markersToChange) {
|
||||
update(markerToChange);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void update(Object markerToChange) {
|
||||
Object dartMarkerId = ConvertUtil.getKeyValueFromMapObject(markerToChange, "id");
|
||||
if (null != dartMarkerId) {
|
||||
MarkerController markerController = controllerMapByDartId.get(dartMarkerId);
|
||||
if (null != markerController) {
|
||||
MarkerUtil.interpretMarkerOptions(markerToChange, markerController);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private void removeByIdList(List<Object> markerIdsToRemove) {
|
||||
if (markerIdsToRemove == null) {
|
||||
return;
|
||||
}
|
||||
for (Object rawMarkerId : markerIdsToRemove) {
|
||||
if (rawMarkerId == null) {
|
||||
continue;
|
||||
}
|
||||
String markerId = (String) rawMarkerId;
|
||||
final MarkerController markerController = controllerMapByDartId.remove(markerId);
|
||||
if (markerController != null) {
|
||||
|
||||
idMapByOverlyId.remove(markerController.getMarkerId());
|
||||
markerController.remove();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void showMarkerInfoWindow(String dartMarkId) {
|
||||
MarkerController markerController = controllerMapByDartId.get(dartMarkId);
|
||||
if (null != markerController) {
|
||||
markerController.showInfoWindow();
|
||||
}
|
||||
}
|
||||
|
||||
private void hideMarkerInfoWindow(String dartMarkId, LatLng newPosition) {
|
||||
if (TextUtils.isEmpty(dartMarkId)) {
|
||||
return;
|
||||
}
|
||||
if (!controllerMapByDartId.containsKey(dartMarkId)) {
|
||||
return;
|
||||
}
|
||||
MarkerController markerController = controllerMapByDartId.get(dartMarkId);
|
||||
if (null != markerController) {
|
||||
if (null != newPosition && null != markerController.getPosition()) {
|
||||
if (markerController.getPosition().equals(newPosition)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
markerController.hideInfoWindow();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMapClick(LatLng latLng) {
|
||||
hideMarkerInfoWindow(selectedMarkerDartId, null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onMarkerClick(Marker marker) {
|
||||
String dartId = idMapByOverlyId.get(marker.getId());
|
||||
if (null == dartId) {
|
||||
return false;
|
||||
}
|
||||
final Map<String, Object> data = new HashMap<>(1);
|
||||
data.put("markerId", dartId);
|
||||
selectedMarkerDartId = dartId;
|
||||
showMarkerInfoWindow(dartId);
|
||||
methodChannel.invokeMethod("marker#onTap", data);
|
||||
LogUtil.i(CLASS_NAME, "onMarkerClick==>" + data);
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMarkerDragStart(Marker marker) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMarkerDrag(Marker marker) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMarkerDragEnd(Marker marker) {
|
||||
String markerId = marker.getId();
|
||||
String dartId = idMapByOverlyId.get(markerId);
|
||||
LatLng latLng = marker.getPosition();
|
||||
if (null == dartId) {
|
||||
return;
|
||||
}
|
||||
final Map<String, Object> data = new HashMap<>(2);
|
||||
data.put("markerId", dartId);
|
||||
data.put("position", ConvertUtil.latLngToList(latLng));
|
||||
methodChannel.invokeMethod("marker#onDragEnd", data);
|
||||
|
||||
LogUtil.i(CLASS_NAME, "onMarkerDragEnd==>" + data);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPOIClick(Poi poi) {
|
||||
hideMarkerInfoWindow(selectedMarkerDartId, null != poi ? poi.getCoordinate() : null);
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,62 @@
|
|||
package com.amap.flutter.map.overlays.polygon;
|
||||
|
||||
import com.amap.api.maps.model.AMapPara;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
import com.amap.api.maps.model.Polygon;
|
||||
import com.amap.api.maps.model.PolygonOptions;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/12 9:52 AM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
class PolygonController implements PolygonOptionsSink{
|
||||
|
||||
private final Polygon polygon;
|
||||
private final String id;
|
||||
PolygonController(Polygon polygon){
|
||||
this.polygon = polygon;
|
||||
this.id = polygon.getId();
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void remove() {
|
||||
polygon.remove();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPoints(List<LatLng> points) {
|
||||
polygon.setPoints(points);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setStrokeWidth(float strokeWidth) {
|
||||
polygon.setStrokeWidth(strokeWidth);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setStrokeColor(int color) {
|
||||
polygon.setStrokeColor(color);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setFillColor(int color) {
|
||||
polygon.setFillColor(color);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setVisible(boolean visible) {
|
||||
polygon.setVisible(visible);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLineJoinType(AMapPara.LineJoinType joinType) {
|
||||
//不支持动态修改
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
package com.amap.flutter.map.overlays.polygon;
|
||||
|
||||
import com.amap.api.maps.model.AMapPara;
|
||||
import com.amap.api.maps.model.BitmapDescriptor;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
import com.amap.api.maps.model.PolygonOptions;
|
||||
import com.amap.api.maps.model.PolylineOptions;
|
||||
import com.amap.flutter.map.overlays.polyline.PolylineOptionsSink;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/12 9:51 AM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
class PolygonOptionsBuilder implements PolygonOptionsSink {
|
||||
final PolygonOptions polygonOptions;
|
||||
PolygonOptionsBuilder() {
|
||||
polygonOptions = new PolygonOptions();
|
||||
//必须设置为true,否则会出现线条转折处出现断裂的现象
|
||||
polygonOptions.usePolylineStroke(true);
|
||||
}
|
||||
|
||||
public PolygonOptions build(){
|
||||
return polygonOptions;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void setPoints(List<LatLng> points) {
|
||||
polygonOptions.setPoints(points);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setStrokeWidth(float strokeWidth) {
|
||||
polygonOptions.strokeWidth(strokeWidth);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setStrokeColor(int color) {
|
||||
polygonOptions.strokeColor(color);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setFillColor(int color) {
|
||||
polygonOptions.fillColor(color);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setVisible(boolean visible) {
|
||||
polygonOptions.visible(visible);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLineJoinType(AMapPara.LineJoinType joinType) {
|
||||
polygonOptions.lineJoinType(joinType);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
package com.amap.flutter.map.overlays.polygon;
|
||||
|
||||
import com.amap.api.maps.model.AMapPara;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/12 9:52 AM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
interface PolygonOptionsSink {
|
||||
//多边形坐标点列表
|
||||
void setPoints(List<LatLng> points);
|
||||
|
||||
//边框宽度
|
||||
void setStrokeWidth(float strokeWidth);
|
||||
|
||||
//边框颜色
|
||||
void setStrokeColor(int color);
|
||||
|
||||
//填充颜色
|
||||
void setFillColor(int color);
|
||||
|
||||
//是否显示
|
||||
void setVisible(boolean visible);
|
||||
|
||||
//边框连接类型
|
||||
void setLineJoinType(AMapPara.LineJoinType joinType);
|
||||
}
|
|
@ -0,0 +1,58 @@
|
|||
package com.amap.flutter.map.overlays.polygon;
|
||||
|
||||
import com.amap.api.maps.model.AMapPara;
|
||||
import com.amap.flutter.map.overlays.polyline.PolylineOptionsSink;
|
||||
import com.amap.flutter.map.utils.ConvertUtil;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/12 10:11 AM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
class PolygonUtil {
|
||||
|
||||
static String interpretOptions(Object o, PolygonOptionsSink sink) {
|
||||
final Map<?, ?> data = ConvertUtil.toMap(o);
|
||||
final Object points = data.get("points");
|
||||
if (points != null) {
|
||||
sink.setPoints(ConvertUtil.toPoints(points));
|
||||
}
|
||||
|
||||
final Object width = data.get("strokeWidth");
|
||||
if (width != null) {
|
||||
sink.setStrokeWidth(ConvertUtil.toFloatPixels(width));
|
||||
}
|
||||
|
||||
final Object strokeColor = data.get("strokeColor");
|
||||
if (strokeColor != null) {
|
||||
sink.setStrokeColor(ConvertUtil.toInt(strokeColor));
|
||||
}
|
||||
|
||||
final Object fillColor = data.get("fillColor");
|
||||
if (fillColor != null) {
|
||||
sink.setFillColor(ConvertUtil.toInt(fillColor));
|
||||
}
|
||||
|
||||
final Object visible = data.get("visible");
|
||||
if (visible != null) {
|
||||
sink.setVisible(ConvertUtil.toBoolean(visible));
|
||||
}
|
||||
|
||||
final Object joinType = data.get("joinType");
|
||||
if (joinType != null) {
|
||||
sink.setLineJoinType(AMapPara.LineJoinType.valueOf(ConvertUtil.toInt(joinType)));
|
||||
}
|
||||
|
||||
final String polylineId = (String) data.get("id");
|
||||
if (polylineId == null) {
|
||||
throw new IllegalArgumentException("polylineId was null");
|
||||
} else {
|
||||
return polylineId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,129 @@
|
|||
package com.amap.flutter.map.overlays.polygon;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import com.amap.api.maps.AMap;
|
||||
import com.amap.api.maps.model.Polygon;
|
||||
import com.amap.api.maps.model.PolygonOptions;
|
||||
import com.amap.flutter.map.MyMethodCallHandler;
|
||||
import com.amap.flutter.map.overlays.AbstractOverlayController;
|
||||
import com.amap.flutter.map.utils.Const;
|
||||
import com.amap.flutter.map.utils.ConvertUtil;
|
||||
import com.amap.flutter.map.utils.LogUtil;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import io.flutter.plugin.common.MethodCall;
|
||||
import io.flutter.plugin.common.MethodChannel;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/12 9:53 AM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public class PolygonsController
|
||||
extends AbstractOverlayController<PolygonController>
|
||||
implements MyMethodCallHandler {
|
||||
|
||||
private static final String CLASS_NAME = "PolygonsController";
|
||||
|
||||
public PolygonsController(MethodChannel methodChannel, AMap amap) {
|
||||
super(methodChannel, amap);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void doMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
|
||||
String methodId = call.method;
|
||||
LogUtil.i(CLASS_NAME, "doMethodCall===>" +methodId);
|
||||
switch (methodId) {
|
||||
case Const.METHOD_POLYGON_UPDATE:
|
||||
invokePolylineOptions(call, result);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] getRegisterMethodIdArray() {
|
||||
return Const.METHOD_ID_LIST_FOR_POLYGON;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param methodCall
|
||||
* @param result
|
||||
*/
|
||||
public void invokePolylineOptions(MethodCall methodCall, MethodChannel.Result result) {
|
||||
if (null == methodCall) {
|
||||
return;
|
||||
}
|
||||
Object listToAdd = methodCall.argument("polygonsToAdd");
|
||||
addByList((List<Object>) listToAdd);
|
||||
Object listToChange = methodCall.argument("polygonsToChange");
|
||||
updateByList((List<Object>) listToChange);
|
||||
Object listIdToRemove = methodCall.argument("polygonIdsToRemove");
|
||||
removeByIdList((List<Object>) listIdToRemove);
|
||||
result.success(null);
|
||||
}
|
||||
|
||||
public void addByList(List<Object> polygonsToAdd) {
|
||||
if (polygonsToAdd != null) {
|
||||
for (Object polygonToAdd : polygonsToAdd) {
|
||||
add(polygonToAdd);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void add(Object polylineObj) {
|
||||
if (null != amap) {
|
||||
PolygonOptionsBuilder builder = new PolygonOptionsBuilder();
|
||||
String dartId = PolygonUtil.interpretOptions(polylineObj, builder);
|
||||
if (!TextUtils.isEmpty(dartId)) {
|
||||
PolygonOptions options = builder.build();
|
||||
final Polygon polygon = amap.addPolygon(options);
|
||||
PolygonController polygonController = new PolygonController(polygon);
|
||||
controllerMapByDartId.put(dartId, polygonController);
|
||||
idMapByOverlyId.put(polygon.getId(), dartId);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void updateByList(List<Object> overlaysToChange) {
|
||||
if (overlaysToChange != null) {
|
||||
for (Object overlayToChange : overlaysToChange) {
|
||||
update(overlayToChange);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void update(Object toUpdate) {
|
||||
Object dartId = ConvertUtil.getKeyValueFromMapObject(toUpdate, "id");
|
||||
if (null != dartId) {
|
||||
PolygonController controller = controllerMapByDartId.get(dartId);
|
||||
if (null != controller) {
|
||||
PolygonUtil.interpretOptions(toUpdate, controller);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void removeByIdList(List<Object> toRemoveIdList) {
|
||||
if (toRemoveIdList == null) {
|
||||
return;
|
||||
}
|
||||
for (Object toRemoveId : toRemoveIdList) {
|
||||
if (toRemoveId == null) {
|
||||
continue;
|
||||
}
|
||||
String dartId = (String) toRemoveId;
|
||||
final PolygonController controller = controllerMapByDartId.remove(dartId);
|
||||
if (controller != null) {
|
||||
|
||||
idMapByOverlyId.remove(controller.getId());
|
||||
controller.remove();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,120 @@
|
|||
package com.amap.flutter.map.overlays.polyline;
|
||||
|
||||
import com.amap.api.maps.model.BitmapDescriptor;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
import com.amap.api.maps.model.Polyline;
|
||||
import com.amap.api.maps.model.PolylineOptions;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/10 2:58 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
class PolylineController implements PolylineOptionsSink {
|
||||
final Polyline polyline;
|
||||
final String polylineId;
|
||||
PolylineController(Polyline polyline) {
|
||||
this.polyline = polyline;
|
||||
this.polylineId = polyline.getId();
|
||||
}
|
||||
|
||||
public String getPolylineId() {
|
||||
return polylineId;
|
||||
}
|
||||
|
||||
public void remove() {
|
||||
if(null != polyline) {
|
||||
polyline.remove();
|
||||
}
|
||||
}
|
||||
@Override
|
||||
public void setPoints(List<LatLng> points) {
|
||||
polyline.setPoints(points);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setWidth(float width) {
|
||||
polyline.setWidth(width);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setColor(int color) {
|
||||
polyline.setColor(color);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setVisible(boolean visible) {
|
||||
polyline.setVisible(visible);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCustomTexture(BitmapDescriptor customTexture) {
|
||||
polyline.setCustomTexture(customTexture);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCustomTextureList(List<BitmapDescriptor> customTextureList) {
|
||||
polyline.setCustomTextureList(customTextureList);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setColorList(List<Integer> colorList) {
|
||||
PolylineOptions options = polyline.getOptions();
|
||||
options.colorValues(colorList);
|
||||
polyline.setOptions(options);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCustomIndexList(List<Integer> customIndexList) {
|
||||
PolylineOptions options = polyline.getOptions();
|
||||
options.setCustomTextureIndex(customIndexList);
|
||||
polyline.setOptions(options);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setGeodesic(boolean geodesic) {
|
||||
polyline.setGeodesic(geodesic);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setGradient(boolean gradient) {
|
||||
polyline.setGeodesic(gradient);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setAlpha(float alpha) {
|
||||
polyline.setTransparency(alpha);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDashLineType(int type) {
|
||||
PolylineOptions options = polyline.getOptions();
|
||||
options.setDottedLineType(type);
|
||||
polyline.setOptions(options);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDashLine(boolean dashLine) {
|
||||
polyline.setDottedLine(dashLine);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLineCapType(PolylineOptions.LineCapType lineCapType) {
|
||||
PolylineOptions options = polyline.getOptions();
|
||||
options.lineCapType(lineCapType);
|
||||
polyline.setOptions(options);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void setLineJoinType(PolylineOptions.LineJoinType joinType) {
|
||||
PolylineOptions options = polyline.getOptions();
|
||||
options.lineJoinType(joinType);
|
||||
polyline.setOptions(options);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,103 @@
|
|||
package com.amap.flutter.map.overlays.polyline;
|
||||
|
||||
import com.amap.api.maps.model.AMapPara;
|
||||
import com.amap.api.maps.model.BitmapDescriptor;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
import com.amap.api.maps.model.PolylineOptions;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/10 2:57 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
class PolylineOptionsBuilder implements PolylineOptionsSink {
|
||||
final PolylineOptions polylineOptions;
|
||||
|
||||
PolylineOptionsBuilder() {
|
||||
polylineOptions = new PolylineOptions();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPoints(List<LatLng> points) {
|
||||
polylineOptions.setPoints(points);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setWidth(float width) {
|
||||
polylineOptions.width(width);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setColor(int color) {
|
||||
polylineOptions.color(color);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setVisible(boolean visible) {
|
||||
polylineOptions.visible(visible);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCustomTexture(BitmapDescriptor customTexture) {
|
||||
polylineOptions.setCustomTexture(customTexture);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCustomTextureList(List<BitmapDescriptor> customTextureList) {
|
||||
polylineOptions.setCustomTextureList(customTextureList);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setColorList(List<Integer> colorList) {
|
||||
polylineOptions.colorValues(colorList);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCustomIndexList(List<Integer> customIndexList) {
|
||||
polylineOptions.setCustomTextureIndex(customIndexList);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setGeodesic(boolean geodesic) {
|
||||
polylineOptions.geodesic(geodesic);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setGradient(boolean gradient) {
|
||||
polylineOptions.useGradient(gradient);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setAlpha(float alpha) {
|
||||
polylineOptions.transparency(alpha);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDashLineType(int type) {
|
||||
polylineOptions.setDottedLineType(type);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDashLine(boolean dashLine) {
|
||||
polylineOptions.setDottedLine(dashLine);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLineCapType(PolylineOptions.LineCapType lineCapType) {
|
||||
polylineOptions.lineCapType(lineCapType);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLineJoinType(PolylineOptions.LineJoinType joinType) {
|
||||
polylineOptions.lineJoinType(joinType);
|
||||
}
|
||||
|
||||
public PolylineOptions build(){
|
||||
return polylineOptions;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,61 @@
|
|||
package com.amap.flutter.map.overlays.polyline;
|
||||
|
||||
import com.amap.api.maps.model.BitmapDescriptor;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
import com.amap.api.maps.model.PolylineOptions;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/10 2:58 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public interface PolylineOptionsSink {
|
||||
//路线点
|
||||
void setPoints(List<LatLng> points);
|
||||
|
||||
//宽度
|
||||
void setWidth(float width);
|
||||
|
||||
//颜色
|
||||
void setColor(int color);
|
||||
|
||||
//是否显示
|
||||
void setVisible(boolean visible);
|
||||
|
||||
//纹理
|
||||
void setCustomTexture(BitmapDescriptor customTexture);
|
||||
|
||||
//纹理列表
|
||||
void setCustomTextureList(List<BitmapDescriptor> customTextureList);
|
||||
|
||||
//颜色列表
|
||||
void setColorList(List<Integer> colorList);
|
||||
|
||||
//纹理顺序
|
||||
void setCustomIndexList(List<Integer> customIndexList);
|
||||
|
||||
//是否大地曲线
|
||||
void setGeodesic(boolean geodesic);
|
||||
|
||||
//是否渐变
|
||||
void setGradient(boolean gradient);
|
||||
|
||||
//透明度
|
||||
void setAlpha(float alpha);
|
||||
|
||||
//虚线类型
|
||||
void setDashLineType(int type);
|
||||
|
||||
//是否虚线
|
||||
void setDashLine(boolean dashLine);
|
||||
|
||||
//线冒类型
|
||||
void setLineCapType(PolylineOptions.LineCapType lineCapType);
|
||||
|
||||
//线交接类型
|
||||
void setLineJoinType(PolylineOptions.LineJoinType joinType);
|
||||
|
||||
}
|
|
@ -0,0 +1,108 @@
|
|||
package com.amap.flutter.map.overlays.polyline;
|
||||
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import com.amap.api.maps.model.PolylineOptions;
|
||||
import com.amap.flutter.map.utils.ConvertUtil;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/10 4:34 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
class PolylineUtil {
|
||||
|
||||
private static final String CLASS_NAME = "PolylineUtil";
|
||||
//虚线类型
|
||||
private static final int[] DASH_LINE_TYPE = {-1,0,1};
|
||||
|
||||
static String interpretOptions(Object o, PolylineOptionsSink sink) {
|
||||
final Map<?, ?> data = ConvertUtil.toMap(o);
|
||||
|
||||
final Object points = data.get("points");
|
||||
if (points != null) {
|
||||
sink.setPoints(ConvertUtil.toPoints(points));
|
||||
}
|
||||
|
||||
final Object width = data.get("width");
|
||||
if (width != null) {
|
||||
sink.setWidth(ConvertUtil.toFloatPixels(width));
|
||||
}
|
||||
|
||||
final Object visible = data.get("visible");
|
||||
if (visible != null) {
|
||||
sink.setVisible(ConvertUtil.toBoolean(visible));
|
||||
}
|
||||
|
||||
final Object geodesic = data.get("geodesic");
|
||||
if (geodesic != null) {
|
||||
sink.setGeodesic(ConvertUtil.toBoolean(geodesic));
|
||||
}
|
||||
|
||||
final Object gradient = data.get("gradient");
|
||||
if (gradient != null) {
|
||||
sink.setGradient(ConvertUtil.toBoolean(gradient));
|
||||
}
|
||||
|
||||
final Object alpha = data.get("alpha");
|
||||
if (alpha != null) {
|
||||
sink.setAlpha(ConvertUtil.toFloat(alpha));
|
||||
}
|
||||
|
||||
final Object dashLineType = data.get("dashLineType");
|
||||
if (dashLineType != null) {
|
||||
int rawType = ConvertUtil.toInt(dashLineType);
|
||||
if (rawType > DASH_LINE_TYPE.length) {
|
||||
rawType = 0;
|
||||
}
|
||||
if(DASH_LINE_TYPE[rawType] == -1) {
|
||||
sink.setDashLine(false);
|
||||
} else {
|
||||
sink.setDashLine(true);
|
||||
sink.setDashLineType(DASH_LINE_TYPE[rawType]);
|
||||
}
|
||||
}
|
||||
|
||||
final Object capType = data.get("capType");
|
||||
if (capType != null) {
|
||||
sink.setLineCapType(PolylineOptions.LineCapType.valueOf(ConvertUtil.toInt(capType)));
|
||||
}
|
||||
|
||||
final Object joinType = data.get("joinType");
|
||||
if (joinType != null) {
|
||||
sink.setLineJoinType(PolylineOptions.LineJoinType.valueOf(ConvertUtil.toInt(joinType)));
|
||||
}
|
||||
|
||||
|
||||
final Object customTexture = data.get("customTexture");
|
||||
if (customTexture != null) {
|
||||
sink.setCustomTexture(ConvertUtil.toBitmapDescriptor(customTexture));
|
||||
}
|
||||
|
||||
final Object customTextureList = data.get("customTextureList");
|
||||
if (customTextureList != null) {
|
||||
sink.setCustomTextureList(ConvertUtil.toBitmapDescriptorList(customTextureList));
|
||||
}
|
||||
|
||||
final Object color = data.get("color");
|
||||
if (color != null) {
|
||||
sink.setColor(ConvertUtil.toInt(color));
|
||||
}
|
||||
|
||||
final Object colorList = data.get("colorList");
|
||||
if (colorList != null) {
|
||||
sink.setColorList((List<Integer>) ConvertUtil.toList(colorList));
|
||||
}
|
||||
|
||||
final String dartId = (String) data.get("id");
|
||||
if(TextUtils.isEmpty(dartId)) {
|
||||
Log.w(CLASS_NAME, "没有传入正确的dart层ID, 请确认对应的key值是否正确!!!");
|
||||
}
|
||||
return dartId;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,149 @@
|
|||
package com.amap.flutter.map.overlays.polyline;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import com.amap.api.maps.AMap;
|
||||
import com.amap.api.maps.TextureMapView;
|
||||
import com.amap.api.maps.model.Polyline;
|
||||
import com.amap.api.maps.model.PolylineOptions;
|
||||
import com.amap.flutter.map.MyMethodCallHandler;
|
||||
import com.amap.flutter.map.overlays.AbstractOverlayController;
|
||||
import com.amap.flutter.map.utils.Const;
|
||||
import com.amap.flutter.map.utils.ConvertUtil;
|
||||
import com.amap.flutter.map.utils.LogUtil;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import io.flutter.plugin.common.MethodCall;
|
||||
import io.flutter.plugin.common.MethodChannel;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/10 2:58 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public class PolylinesController
|
||||
extends AbstractOverlayController<PolylineController>
|
||||
implements MyMethodCallHandler,
|
||||
AMap.OnPolylineClickListener {
|
||||
|
||||
private static final String CLASS_NAME = "PolylinesController";
|
||||
|
||||
public PolylinesController(MethodChannel methodChannel, AMap amap) {
|
||||
super(methodChannel, amap);
|
||||
amap.addOnPolylineClickListener(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] getRegisterMethodIdArray() {
|
||||
return Const.METHOD_ID_LIST_FOR_POLYLINE;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void doMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
|
||||
LogUtil.i(CLASS_NAME, "doMethodCall===>" + call.method);
|
||||
String methodStr = call.method;
|
||||
switch (methodStr) {
|
||||
case Const.METHOD_POLYLINE_UPDATE:
|
||||
invokePolylineOptions(call, result);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPolylineClick(Polyline polyline) {
|
||||
String dartId = idMapByOverlyId.get(polyline.getId());
|
||||
if (null == dartId) {
|
||||
return;
|
||||
}
|
||||
final Map<String, Object> data = new HashMap<>(1);
|
||||
data.put("polylineId", dartId);
|
||||
methodChannel.invokeMethod("polyline#onTap", data);
|
||||
LogUtil.i(CLASS_NAME, "onPolylineClick==>" + data);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param methodCall
|
||||
* @param result
|
||||
*/
|
||||
private void invokePolylineOptions(MethodCall methodCall, MethodChannel.Result result) {
|
||||
if (null == methodCall) {
|
||||
return;
|
||||
}
|
||||
Object listToAdd = methodCall.argument("polylinesToAdd");
|
||||
addByList((List<Object>) listToAdd);
|
||||
Object listToChange = methodCall.argument("polylinesToChange");
|
||||
updateByList((List<Object>) listToChange);
|
||||
Object polylineIdsToRemove = methodCall.argument("polylineIdsToRemove");
|
||||
removeByIdList((List<Object>) polylineIdsToRemove);
|
||||
result.success(null);
|
||||
}
|
||||
|
||||
public void addByList(List<Object> polylinesToAdd) {
|
||||
if (polylinesToAdd != null) {
|
||||
for (Object markerToAdd : polylinesToAdd) {
|
||||
addPolyline(markerToAdd);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void addPolyline(Object polylineObj) {
|
||||
if (null != amap) {
|
||||
PolylineOptionsBuilder builder = new PolylineOptionsBuilder();
|
||||
String dartId = PolylineUtil.interpretOptions(polylineObj, builder);
|
||||
if (!TextUtils.isEmpty(dartId)) {
|
||||
PolylineOptions polylineOptions = builder.build();
|
||||
final Polyline polyline = amap.addPolyline(polylineOptions);
|
||||
PolylineController polylineController = new PolylineController(polyline);
|
||||
controllerMapByDartId.put(dartId, polylineController);
|
||||
idMapByOverlyId.put(polyline.getId(), dartId);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void updateByList(List<Object> polylineToChange) {
|
||||
if (polylineToChange != null) {
|
||||
for (Object markerToChange : polylineToChange) {
|
||||
update(markerToChange);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void update(Object polylineToChange) {
|
||||
Object polylineId = ConvertUtil.getKeyValueFromMapObject(polylineToChange, "id");
|
||||
if (null != polylineId) {
|
||||
PolylineController polylineController = controllerMapByDartId.get(polylineId);
|
||||
if (null != polylineController) {
|
||||
PolylineUtil.interpretOptions(polylineToChange, polylineController);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private void removeByIdList(List<Object> polylineIdsToRemove) {
|
||||
if (polylineIdsToRemove == null) {
|
||||
return;
|
||||
}
|
||||
for (Object rawPolylineId : polylineIdsToRemove) {
|
||||
if (rawPolylineId == null) {
|
||||
continue;
|
||||
}
|
||||
String markerId = (String) rawPolylineId;
|
||||
final PolylineController polylineController = controllerMapByDartId.remove(markerId);
|
||||
if (polylineController != null) {
|
||||
idMapByOverlyId.remove(polylineController.getPolylineId());
|
||||
polylineController.remove();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,50 @@
|
|||
package com.amap.flutter.map.utils;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/10 9:44 PM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public class Const {
|
||||
/**
|
||||
* map
|
||||
*/
|
||||
public static final String METHOD_MAP_WAIT_FOR_MAP = "map#waitForMap";
|
||||
public static final String METHOD_MAP_CONTENT_APPROVAL_NUMBER = "map#contentApprovalNumber";
|
||||
public static final String METHOD_MAP_SATELLITE_IMAGE_APPROVAL_NUMBER = "map#satelliteImageApprovalNumber";
|
||||
public static final String METHOD_MAP_UPDATE = "map#update";
|
||||
public static final String METHOD_MAP_MOVE_CAMERA = "camera#move";
|
||||
public static final String METHOD_MAP_SET_RENDER_FPS = "map#setRenderFps";
|
||||
public static final String METHOD_MAP_TAKE_SNAPSHOT = "map#takeSnapshot";
|
||||
public static final String METHOD_MAP_CLEAR_DISK = "map#clearDisk";
|
||||
|
||||
public static final String[] METHOD_ID_LIST_FOR_MAP = {
|
||||
METHOD_MAP_CONTENT_APPROVAL_NUMBER,
|
||||
METHOD_MAP_SATELLITE_IMAGE_APPROVAL_NUMBER,
|
||||
METHOD_MAP_WAIT_FOR_MAP,
|
||||
METHOD_MAP_UPDATE,
|
||||
METHOD_MAP_MOVE_CAMERA,
|
||||
METHOD_MAP_SET_RENDER_FPS,
|
||||
METHOD_MAP_TAKE_SNAPSHOT,
|
||||
METHOD_MAP_CLEAR_DISK};
|
||||
|
||||
|
||||
/**
|
||||
* markers
|
||||
*/
|
||||
public static final String METHOD_MARKER_UPDATE = "markers#update";
|
||||
public static final String[] METHOD_ID_LIST_FOR_MARKER = {METHOD_MARKER_UPDATE};
|
||||
|
||||
/**
|
||||
* polygons
|
||||
*/
|
||||
public static final String METHOD_POLYGON_UPDATE = "polygons#update";
|
||||
public static final String[] METHOD_ID_LIST_FOR_POLYGON = {METHOD_POLYGON_UPDATE};
|
||||
|
||||
/**
|
||||
* polylines
|
||||
*/
|
||||
public static final String METHOD_POLYLINE_UPDATE = "polylines#update";
|
||||
public static final String[] METHOD_ID_LIST_FOR_POLYLINE = {METHOD_POLYLINE_UPDATE};
|
||||
}
|
|
@ -0,0 +1,521 @@
|
|||
package com.amap.flutter.map.utils;
|
||||
|
||||
import android.content.Context;
|
||||
import android.graphics.Bitmap;
|
||||
import android.graphics.BitmapFactory;
|
||||
import android.graphics.Point;
|
||||
import android.location.Location;
|
||||
import android.text.TextUtils;
|
||||
|
||||
import com.amap.api.maps.AMap;
|
||||
import com.amap.api.maps.CameraUpdate;
|
||||
import com.amap.api.maps.CameraUpdateFactory;
|
||||
import com.amap.api.maps.MapsInitializer;
|
||||
import com.amap.api.maps.model.BitmapDescriptor;
|
||||
import com.amap.api.maps.model.BitmapDescriptorFactory;
|
||||
import com.amap.api.maps.model.CameraPosition;
|
||||
import com.amap.api.maps.model.CustomMapStyleOptions;
|
||||
import com.amap.api.maps.model.LatLng;
|
||||
import com.amap.api.maps.model.LatLngBounds;
|
||||
import com.amap.api.maps.model.MyLocationStyle;
|
||||
import com.amap.api.maps.model.Poi;
|
||||
import com.amap.flutter.map.core.AMapOptionsSink;
|
||||
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import io.flutter.view.FlutterMain;
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/10/29 11:01 AM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public class ConvertUtil {
|
||||
|
||||
private static final String CLASS_NAME = "ConvertUtil";
|
||||
|
||||
public static float density;
|
||||
private static String apiKey;
|
||||
|
||||
public static void setPrivacyStatement(Context context, Object object) {
|
||||
if (null == object) {
|
||||
return;
|
||||
}
|
||||
Map<?, ?> privacyStatementMap = toMap(object);
|
||||
Object hasContainsObj = privacyStatementMap.get("hasContains");
|
||||
Object hasShowObj = privacyStatementMap.get("hasShow");
|
||||
Object hasAgreeObj = privacyStatementMap.get("hasAgree");
|
||||
|
||||
Class<MapsInitializer> clazz = MapsInitializer.class;
|
||||
|
||||
if (null != hasContainsObj
|
||||
&& null != hasShowObj) {
|
||||
boolean hasContains = toBoolean(hasContainsObj);
|
||||
boolean hasShow = toBoolean(hasShowObj);
|
||||
//使用反射的方法调用适配之前的版本
|
||||
try {
|
||||
Method method = clazz.getMethod("updatePrivacyShow", Context.class, boolean.class, boolean.class);
|
||||
method.invoke(null, context, hasContains, hasShow);
|
||||
} catch (Throwable e) {
|
||||
// e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
if (null != hasAgreeObj) {
|
||||
boolean hasAgree = toBoolean(hasAgreeObj);
|
||||
//使用反射的方法调用适配之前的版本
|
||||
try{
|
||||
Method method = clazz.getMethod("updatePrivacyAgree", Context.class, boolean.class);
|
||||
method.invoke(null, context, hasAgree);
|
||||
} catch (Throwable e) {
|
||||
// e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static void checkApiKey(Object object) {
|
||||
if (null == object) {
|
||||
return;
|
||||
}
|
||||
Map<?, ?> keyMap = toMap(object);
|
||||
Object keyObject = keyMap.get("androidKey");
|
||||
if (null != keyObject) {
|
||||
final String aKey = toString(keyObject);
|
||||
if (TextUtils.isEmpty(apiKey)
|
||||
|| !aKey.equals(apiKey)) {
|
||||
apiKey = aKey;
|
||||
MapsInitializer.setApiKey(apiKey);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static int toLocalMapType(int dartMapIndex) {
|
||||
int[] localTypeArray = {AMap.MAP_TYPE_NORMAL, AMap.MAP_TYPE_SATELLITE, AMap.MAP_TYPE_NIGHT, AMap.MAP_TYPE_NAVI, AMap.MAP_TYPE_BUS};
|
||||
if (dartMapIndex > localTypeArray.length) {
|
||||
return localTypeArray[0];
|
||||
}
|
||||
return localTypeArray[dartMapIndex];
|
||||
}
|
||||
|
||||
public static CameraUpdate toCameraUpdate(Object o) {
|
||||
final List<?> data = toList(o);
|
||||
switch (toString(data.get(0))) {
|
||||
case "newCameraPosition":
|
||||
return CameraUpdateFactory.newCameraPosition(toCameraPosition(data.get(1)));
|
||||
case "newLatLng":
|
||||
return CameraUpdateFactory.newLatLng(toLatLng(data.get(1)));
|
||||
case "newLatLngBounds":
|
||||
return CameraUpdateFactory.newLatLngBounds(
|
||||
toLatLngBounds(data.get(1)), toPixels(data.get(2)));
|
||||
case "newLatLngZoom":
|
||||
return CameraUpdateFactory.newLatLngZoom(toLatLng(data.get(1)), toFloat(data.get(2)));
|
||||
case "scrollBy":
|
||||
return CameraUpdateFactory.scrollBy( //
|
||||
toFloatPixels(data.get(1)), //
|
||||
toFloatPixels(data.get(2)));
|
||||
case "zoomBy":
|
||||
if (data.size() == 2) {
|
||||
return CameraUpdateFactory.zoomBy(toFloat(data.get(1)));
|
||||
} else {
|
||||
return CameraUpdateFactory.zoomBy(toFloat(data.get(1)), toPoint(data.get(2)));
|
||||
}
|
||||
case "zoomIn":
|
||||
return CameraUpdateFactory.zoomIn();
|
||||
case "zoomOut":
|
||||
return CameraUpdateFactory.zoomOut();
|
||||
case "zoomTo":
|
||||
return CameraUpdateFactory.zoomTo(toFloat(data.get(1)));
|
||||
default:
|
||||
throw new IllegalArgumentException("Cannot interpret " + o + " as CameraUpdate");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private static Point toPoint(Object o) {
|
||||
final List<?> data = toList(o);
|
||||
return new Point(toPixels(data.get(0)), toPixels(data.get(1)));
|
||||
}
|
||||
|
||||
public static float toFloatPixels(Object o) {
|
||||
return toFloat(o) * density;
|
||||
}
|
||||
|
||||
public static int toPixels(Object o) {
|
||||
return (int) toFloatPixels(o);
|
||||
}
|
||||
|
||||
/**
|
||||
* 将一个对象转换成CameraPosition
|
||||
*
|
||||
* @param o
|
||||
* @return
|
||||
*/
|
||||
public static CameraPosition toCameraPosition(Object o) {
|
||||
final Map<?, ?> data = (Map<?, ?>) o;
|
||||
final CameraPosition.Builder builder = CameraPosition.builder();
|
||||
builder.bearing(toFloat(data.get("bearing")));
|
||||
builder.target(toLatLng(data.get("target")));
|
||||
builder.tilt(toFloat(data.get("tilt")));
|
||||
builder.zoom(toFloat(data.get("zoom")));
|
||||
return builder.build();
|
||||
}
|
||||
|
||||
public static Object cameraPositionToMap(CameraPosition position) {
|
||||
if (position == null) {
|
||||
return null;
|
||||
}
|
||||
final Map<String, Object> data = new HashMap<>();
|
||||
data.put("bearing", position.bearing);
|
||||
data.put("target", latLngToList(position.target));
|
||||
data.put("tilt", position.tilt);
|
||||
data.put("zoom", position.zoom);
|
||||
return data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 转换AMapOptions
|
||||
*
|
||||
* @param o
|
||||
* @param sink
|
||||
*/
|
||||
public static void interpretAMapOptions(Object o, @NonNull AMapOptionsSink sink) {
|
||||
try {
|
||||
final Map<?, ?> data = (Map<?, ?>) o;
|
||||
final Object mapType = data.get("mapType");
|
||||
if (mapType != null) {
|
||||
sink.setMapType(toLocalMapType(toInt(mapType)));
|
||||
}
|
||||
|
||||
final Object buildingsEnabled = data.get("buildingsEnabled");
|
||||
if (null != buildingsEnabled) {
|
||||
sink.setBuildingsEnabled(toBoolean(buildingsEnabled));
|
||||
}
|
||||
|
||||
final Object customMapStyleOptions = data.get("customStyleOptions");
|
||||
if (null != customMapStyleOptions) {
|
||||
CustomMapStyleOptions customMapStyleOptions1 = toCustomMapStyleOptions(customMapStyleOptions);
|
||||
sink.setCustomMapStyleOptions(customMapStyleOptions1);
|
||||
}
|
||||
|
||||
final Object myLocationStyleData = data.get("myLocationStyle");
|
||||
if (null != myLocationStyleData) {
|
||||
sink.setMyLocationStyle(ConvertUtil.toMyLocationStyle(myLocationStyleData, density));
|
||||
}
|
||||
|
||||
final Object screenAnchor = data.get("screenAnchor");
|
||||
if (null != screenAnchor) {
|
||||
final List<?> anchorData = toList(screenAnchor);
|
||||
sink.setScreenAnchor(toFloat(anchorData.get(0)), toFloat(anchorData.get(1)));
|
||||
}
|
||||
|
||||
final Object compassEnabled = data.get("compassEnabled");
|
||||
if (null != compassEnabled) {
|
||||
sink.setCompassEnabled(toBoolean(compassEnabled));
|
||||
}
|
||||
|
||||
final Object labelsEnabled = data.get("labelsEnabled");
|
||||
if (null != labelsEnabled) {
|
||||
sink.setLabelsEnabled(toBoolean(labelsEnabled));
|
||||
}
|
||||
|
||||
final Object limitBounds = data.get("limitBounds");
|
||||
if (null != limitBounds) {
|
||||
final List<?> targetData = toList(limitBounds);
|
||||
sink.setLatLngBounds(toLatLngBounds(targetData));
|
||||
}
|
||||
|
||||
final Object minMaxZoomPreference = data.get("minMaxZoomPreference");
|
||||
if (null != minMaxZoomPreference) {
|
||||
final List<?> targetData = toList(minMaxZoomPreference);
|
||||
sink.setMinZoomLevel(toFloatWrapperWithDefault(targetData.get(0), 3));
|
||||
sink.setMaxZoomLevel(toFloatWrapperWithDefault(targetData.get(1), 20));
|
||||
}
|
||||
|
||||
final Object scaleEnabled = data.get("scaleEnabled");
|
||||
if (null != scaleEnabled) {
|
||||
sink.setScaleEnabled(toBoolean(scaleEnabled));
|
||||
}
|
||||
|
||||
final Object touchPoiEnabled = data.get("touchPoiEnabled");
|
||||
if (null != touchPoiEnabled) {
|
||||
sink.setTouchPoiEnabled(toBoolean(touchPoiEnabled));
|
||||
}
|
||||
|
||||
final Object trafficEnabled = data.get("trafficEnabled");
|
||||
if (null != trafficEnabled) {
|
||||
sink.setTrafficEnabled(toBoolean(trafficEnabled));
|
||||
}
|
||||
|
||||
final Object rotateGesturesEnabled = data.get("rotateGesturesEnabled");
|
||||
if (null != rotateGesturesEnabled) {
|
||||
sink.setRotateGesturesEnabled(toBoolean(rotateGesturesEnabled));
|
||||
}
|
||||
|
||||
final Object scrollGesturesEnabled = data.get("scrollGesturesEnabled");
|
||||
if (null != scrollGesturesEnabled) {
|
||||
sink.setScrollGesturesEnabled(toBoolean(scrollGesturesEnabled));
|
||||
}
|
||||
|
||||
final Object tiltGesturesEnabled = data.get("tiltGesturesEnabled");
|
||||
if (null != tiltGesturesEnabled) {
|
||||
sink.setTiltGesturesEnabled(toBoolean(tiltGesturesEnabled));
|
||||
}
|
||||
|
||||
final Object zoomGesturesEnabled = data.get("zoomGesturesEnabled");
|
||||
if (null != zoomGesturesEnabled) {
|
||||
sink.setZoomGesturesEnabled(toBoolean(zoomGesturesEnabled));
|
||||
}
|
||||
} catch (Throwable e) {
|
||||
LogUtil.e(CLASS_NAME, "interpretAMapOptions", e);
|
||||
}
|
||||
}
|
||||
|
||||
private static CustomMapStyleOptions toCustomMapStyleOptions(Object o) {
|
||||
final Map<?, ?> map = toMap(o);
|
||||
final CustomMapStyleOptions customMapStyleOptions = new CustomMapStyleOptions();
|
||||
final Object enableData = map.get("enabled");
|
||||
if (null != enableData) {
|
||||
customMapStyleOptions.setEnable(toBoolean(enableData));
|
||||
}
|
||||
|
||||
final Object styleData = map.get("styleData");
|
||||
if (null != styleData) {
|
||||
customMapStyleOptions.setStyleData((byte[]) styleData);
|
||||
}
|
||||
final Object styleExtraData = map.get("styleExtraData");
|
||||
if (null != styleExtraData) {
|
||||
customMapStyleOptions.setStyleExtraData((byte[]) styleExtraData);
|
||||
}
|
||||
return customMapStyleOptions;
|
||||
}
|
||||
|
||||
private static final int[] LocationTypeMap = new int[]{MyLocationStyle.LOCATION_TYPE_SHOW, MyLocationStyle.LOCATION_TYPE_FOLLOW, MyLocationStyle.LOCATION_TYPE_LOCATION_ROTATE};
|
||||
|
||||
private static MyLocationStyle toMyLocationStyle(Object o, float density) {
|
||||
final Map<?, ?> map = toMap(o);
|
||||
final MyLocationStyle myLocationStyle = new MyLocationStyle();
|
||||
final Object enableData = map.get("enabled");
|
||||
if (null != enableData) {
|
||||
myLocationStyle.showMyLocation(toBoolean(enableData));
|
||||
}
|
||||
//两端差异比较大,Android端设置成跟随但是不移动到中心点模式,与iOS端兼容
|
||||
myLocationStyle.myLocationType(MyLocationStyle.LOCATION_TYPE_FOLLOW_NO_CENTER);
|
||||
// final Object trackingMode = map.get("trackingMode");
|
||||
// if (null != trackingMode) {
|
||||
// int trackingModeIndex = toInt(trackingMode);
|
||||
// if (trackingModeIndex < LocationTypeMap.length) {
|
||||
// myLocationStyle.myLocationType(LocationTypeMap[trackingModeIndex]);
|
||||
// }
|
||||
// }
|
||||
|
||||
final Object circleFillColorData = map.get("circleFillColor");
|
||||
if (null != circleFillColorData) {
|
||||
myLocationStyle.radiusFillColor(toInt(circleFillColorData));
|
||||
}
|
||||
final Object circleStrokeColorData = map.get("circleStrokeColor");
|
||||
if (null != circleStrokeColorData) {
|
||||
myLocationStyle.strokeColor(toInt(circleStrokeColorData));
|
||||
}
|
||||
|
||||
final Object circleStrokeWidthData = map.get("circleStrokeWidth");
|
||||
if (null != circleStrokeWidthData) {
|
||||
myLocationStyle.strokeWidth(toPixels(circleStrokeWidthData));
|
||||
}
|
||||
|
||||
final Object iconDta = map.get("icon");
|
||||
if (null != iconDta) {
|
||||
myLocationStyle.myLocationIcon(toBitmapDescriptor(iconDta));
|
||||
}
|
||||
return myLocationStyle;
|
||||
}
|
||||
|
||||
public static Object location2Map(Location location) {
|
||||
if (null == location) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (location.getAltitude() > 90 ||
|
||||
location.getAltitude() < -90 ||
|
||||
location.getLongitude() > 180 ||
|
||||
location.getLongitude() < -180) {
|
||||
return null;
|
||||
}
|
||||
|
||||
final Map<String, Object> object = new HashMap<String, Object>();
|
||||
object.put("provider", location.getProvider());
|
||||
object.put("latLng", Arrays.asList(location.getLatitude(), location.getLongitude()));
|
||||
object.put("accuracy", location.getAccuracy());
|
||||
object.put("altitude", location.getAltitude());
|
||||
object.put("bearing", location.getBearing());
|
||||
object.put("speed", location.getSpeed());
|
||||
object.put("time", location.getTime());
|
||||
return object;
|
||||
}
|
||||
|
||||
|
||||
public static BitmapDescriptor toBitmapDescriptor(Object o) {
|
||||
final List<?> data = toList(o);
|
||||
switch (toString(data.get(0))) {
|
||||
case "defaultMarker":
|
||||
if (data.size() == 1) {
|
||||
return BitmapDescriptorFactory.defaultMarker();
|
||||
} else {
|
||||
return BitmapDescriptorFactory.defaultMarker(toFloat(data.get(1)));
|
||||
}
|
||||
case "fromAsset":
|
||||
if (data.size() == 2) {
|
||||
return BitmapDescriptorFactory.fromAsset(
|
||||
FlutterMain.getLookupKeyForAsset(toString(data.get(1))));
|
||||
} else {
|
||||
return BitmapDescriptorFactory.fromAsset(
|
||||
FlutterMain.getLookupKeyForAsset(toString(data.get(1)), toString(data.get(2))));
|
||||
}
|
||||
case "fromAssetImage":
|
||||
if (data.size() == 3) {
|
||||
return BitmapDescriptorFactory.fromAsset(
|
||||
FlutterMain.getLookupKeyForAsset(toString(data.get(1))));
|
||||
} else {
|
||||
throw new IllegalArgumentException(
|
||||
"'fromAssetImage' Expected exactly 3 arguments, got: " + data.size());
|
||||
}
|
||||
case "fromBytes":
|
||||
return getBitmapFromBytes(data);
|
||||
default:
|
||||
throw new IllegalArgumentException("Cannot interpret " + o + " as BitmapDescriptor");
|
||||
}
|
||||
}
|
||||
|
||||
public static List<BitmapDescriptor> toBitmapDescriptorList(Object o) {
|
||||
List<?> rawList = ConvertUtil.toList(o);
|
||||
List<BitmapDescriptor> bitmapDescriptorList = new ArrayList<BitmapDescriptor>();
|
||||
for (Object obj : rawList) {
|
||||
bitmapDescriptorList.add(ConvertUtil.toBitmapDescriptor(obj));
|
||||
}
|
||||
return bitmapDescriptorList;
|
||||
}
|
||||
|
||||
private static BitmapDescriptor getBitmapFromBytes(List<?> data) {
|
||||
if (data.size() == 2) {
|
||||
try {
|
||||
Bitmap bitmap = toBitmap(data.get(1));
|
||||
return BitmapDescriptorFactory.fromBitmap(bitmap);
|
||||
} catch (Exception e) {
|
||||
throw new IllegalArgumentException("Unable to interpret bytes as a valid image.", e);
|
||||
}
|
||||
} else {
|
||||
throw new IllegalArgumentException(
|
||||
"fromBytes should have exactly one argument, the bytes. Got: " + data.size());
|
||||
}
|
||||
}
|
||||
|
||||
private static Bitmap toBitmap(Object o) {
|
||||
byte[] bmpData = (byte[]) o;
|
||||
Bitmap bitmap = BitmapFactory.decodeByteArray(bmpData, 0, bmpData.length);
|
||||
if (bitmap == null) {
|
||||
throw new IllegalArgumentException("Unable to decode bytes as a valid bitmap.");
|
||||
} else {
|
||||
return bitmap;
|
||||
}
|
||||
}
|
||||
|
||||
public static Object poiToMap(Poi poi) {
|
||||
if (null == poi) {
|
||||
return null;
|
||||
}
|
||||
final Map<String, Object> data = new HashMap<>();
|
||||
data.put("id", poi.getPoiId());
|
||||
data.put("name", poi.getName());
|
||||
data.put("latLng", latLngToList(poi.getCoordinate()));
|
||||
return data;
|
||||
}
|
||||
|
||||
public static Object latLngToList(LatLng latLng) {
|
||||
if (null == latLng) {
|
||||
return null;
|
||||
}
|
||||
return Arrays.asList(latLng.latitude, latLng.longitude);
|
||||
}
|
||||
|
||||
public static LatLng toLatLng(Object o) {
|
||||
final List<?> data = (List<?>) o;
|
||||
return new LatLng((Double) data.get(0), (Double) data.get(1));
|
||||
}
|
||||
|
||||
public static List<LatLng> toPoints(Object o) {
|
||||
final List<?> data = toList(o);
|
||||
final List<LatLng> points = new ArrayList<>(data.size());
|
||||
|
||||
for (Object ob : data) {
|
||||
final List<?> point = toList(ob);
|
||||
points.add(new LatLng(toFloat(point.get(0)), toFloat(point.get(1))));
|
||||
}
|
||||
return points;
|
||||
}
|
||||
|
||||
public static LatLngBounds toLatLngBounds(Object o) {
|
||||
if (o == null) {
|
||||
return null;
|
||||
}
|
||||
final List<?> data = toList(o);
|
||||
return new LatLngBounds(toLatLng(data.get(0)), toLatLng(data.get(1)));
|
||||
}
|
||||
|
||||
private static Float toFloatWrapper(Object o) {
|
||||
return (o == null) ? null : toFloat(o);
|
||||
}
|
||||
|
||||
public static Float toFloatWrapperWithDefault(Object o, float defaultValue) {
|
||||
return (o == null) ? defaultValue : toFloat(o);
|
||||
}
|
||||
|
||||
public static boolean toBoolean(Object o) {
|
||||
return (Boolean) o;
|
||||
}
|
||||
|
||||
public static int toInt(Object o) {
|
||||
return ((Number) o).intValue();
|
||||
}
|
||||
|
||||
public static double toDouble(Object o) {
|
||||
return ((Number) o).doubleValue();
|
||||
}
|
||||
|
||||
public static float toFloat(Object o) {
|
||||
return ((Number) o).floatValue();
|
||||
}
|
||||
|
||||
public static List<?> toList(Object o) {
|
||||
return (List<?>) o;
|
||||
}
|
||||
|
||||
public static Map<?, ?> toMap(Object o) {
|
||||
return (Map<?, ?>) o;
|
||||
}
|
||||
|
||||
public static String toString(Object o) {
|
||||
return (String) o;
|
||||
}
|
||||
|
||||
public static Object getKeyValueFromMapObject(Object object, String keyStr) {
|
||||
if (null == object) {
|
||||
return null;
|
||||
}
|
||||
try {
|
||||
Map<?, ?> mapData = toMap(object);
|
||||
return mapData.get(keyStr);
|
||||
} catch (Throwable e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
package com.amap.flutter.map.utils;
|
||||
|
||||
import android.util.Log;
|
||||
|
||||
|
||||
/**
|
||||
* @author whm
|
||||
* @date 2020/11/6 11:04 AM
|
||||
* @mail hongming.whm@alibaba-inc.com
|
||||
* @since
|
||||
*/
|
||||
public class LogUtil {
|
||||
public static boolean isDebugMode = false;
|
||||
private static final String TAG = "AMapFlutter_";
|
||||
public static void i(String className, String message) {
|
||||
if(isDebugMode) {
|
||||
Log.i(TAG+className, message);
|
||||
}
|
||||
}
|
||||
public static void d(String className, String message) {
|
||||
if(isDebugMode) {
|
||||
Log.d(TAG+className, message);
|
||||
}
|
||||
}
|
||||
|
||||
public static void w(String className, String message) {
|
||||
if(isDebugMode) {
|
||||
Log.w(TAG+className, message);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public static void e(String className, String methodName, Throwable e) {
|
||||
if (isDebugMode) {
|
||||
Log.e(TAG+className, methodName + " exception!!", e);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,93 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="generator" content="made with love by dartdoc 0.35.0">
|
||||
<meta name="description" content="amap_map API docs, for the Dart programming language.">
|
||||
<title>amap_map - Dart API docs</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="static-assets/github.css">
|
||||
<link rel="stylesheet" href="static-assets/styles.css">
|
||||
<link rel="icon" href="static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href=""
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li class="self-crumb">amap_map package</li>
|
||||
</ol>
|
||||
<div class="self-name">amap_map</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li class="self-crumb">amap_map package</li>
|
||||
</ol>
|
||||
|
||||
<h5><span class="package-name">amap_map</span> <span class="package-kind">package</span></h5>
|
||||
<ol>
|
||||
<li class="section-title">Libraries</li>
|
||||
<li><a href="amap_map/amap_map-library.html">amap_map</a></li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<h1>404: Something's gone wrong :-(</h1>
|
||||
|
||||
<section class="desc">
|
||||
<p>You've tried to visit a page that doesn't exist. Luckily this site
|
||||
has other <a href="index.html">pages</a>.</p>
|
||||
<p>If you were looking for something specific, try searching:
|
||||
<form class="search-body" role="search">
|
||||
<input type="text" id="search-body" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</p>
|
||||
|
||||
</section>
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="static-assets/highlight.pack.js"></script>
|
||||
<script src="static-assets/URI.js"></script>
|
||||
<script src="static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,317 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the AMapController class from the amap_map library, for the Dart programming language.">
|
||||
<title>AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../static-assets/styles.css">
|
||||
<link rel="icon" href="../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../index.html">amap_map</a></li>
|
||||
<li><a href="../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li class="self-crumb">AMapController class</li>
|
||||
</ol>
|
||||
<div class="self-name">AMapController</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../index.html">amap_map</a></li>
|
||||
<li><a href="../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li class="self-crumb">AMapController class</li>
|
||||
</ol>
|
||||
|
||||
<h5>amap_map library</h5>
|
||||
<ol>
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#classes">Classes</a></li>
|
||||
<li><a href="../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li><a href="../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li><a href="../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li><a href="../amap_map/CameraPosition-class.html">CameraPosition</a></li>
|
||||
<li><a href="../amap_map/CameraTargetBounds-class.html">CameraTargetBounds</a></li>
|
||||
<li><a href="../amap_map/CameraUpdate-class.html">CameraUpdate</a></li>
|
||||
<li><a href="../amap_map/CustomStyleOptions-class.html">CustomStyleOptions</a></li>
|
||||
<li><a href="../amap_map/InfoWindow-class.html">InfoWindow</a></li>
|
||||
<li><a href="../amap_map/Marker-class.html">Marker</a></li>
|
||||
<li><a href="../amap_map/MarkerUpdates-class.html">MarkerUpdates</a></li>
|
||||
<li><a href="../amap_map/MinMaxZoomPreference-class.html">MinMaxZoomPreference</a></li>
|
||||
<li><a href="../amap_map/MyLocationStyleOptions-class.html">MyLocationStyleOptions</a></li>
|
||||
<li><a href="../amap_map/Polygon-class.html">Polygon</a></li>
|
||||
<li><a href="../amap_map/PolygonUpdates-class.html">PolygonUpdates</a></li>
|
||||
<li><a href="../amap_map/Polyline-class.html">Polyline</a></li>
|
||||
<li><a href="../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#functions">Functions</a></li>
|
||||
<li><a href="../amap_map/keyByMarkerId.html">keyByMarkerId</a></li>
|
||||
<li><a href="../amap_map/keyByPolygonId.html">keyByPolygonId</a></li>
|
||||
<li><a href="../amap_map/keyByPolylineId.html">keyByPolylineId</a></li>
|
||||
<li><a href="../amap_map/serializeOverlaySet.html">serializeOverlaySet</a></li>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#enums">Enums</a></li>
|
||||
<li><a href="../amap_map/CapType-class.html">CapType</a></li>
|
||||
<li><a href="../amap_map/DashLineType-class.html">DashLineType</a></li>
|
||||
<li><a href="../amap_map/JoinType-class.html">JoinType</a></li>
|
||||
<li><a href="../amap_map/MapType-class.html">MapType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#typedefs">Typedefs</a></li>
|
||||
<li><a href="../amap_map/MapCreatedCallback.html">MapCreatedCallback</a></li>
|
||||
<li><a href="../amap_map/MarkerDragEndCallback.html">MarkerDragEndCallback</a></li>
|
||||
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-class">AMapController</span> class </h1></div>
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="summary offset-anchor" id="instance-properties">
|
||||
<h2>Properties</h2>
|
||||
|
||||
<dl class="properties">
|
||||
<dt id="channel" class="property">
|
||||
<span class="name"><a href="../amap_map/AMapController/channel.html">channel</a></span>
|
||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/services/MethodChannel-class.html">MethodChannel</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
只用于测试
|
||||
用于与native的通信
|
||||
<div class="features">@<a href="https://api.flutter.dev/flutter/widgets/visibleForTesting-constant.html">visibleForTesting</a>, read-only</div>
|
||||
</dd>
|
||||
<dt id="hashCode" class="property inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></span>
|
||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
The hash code for this object. <a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">[...]</a>
|
||||
<div class="features">read-only, inherited</div>
|
||||
</dd>
|
||||
<dt id="mapId" class="property">
|
||||
<span class="name"><a href="../amap_map/AMapController/mapId.html">mapId</a></span>
|
||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
<div class="features">final</div>
|
||||
</dd>
|
||||
<dt id="runtimeType" class="property inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
A representation of the runtime type of the object.
|
||||
<div class="features">read-only, inherited</div>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section class="summary offset-anchor" id="instance-methods">
|
||||
<h2>Methods</h2>
|
||||
<dl class="callables">
|
||||
<dt id="clearDisk" class="callable">
|
||||
<span class="name"><a href="../amap_map/AMapController/clearDisk.html">clearDisk</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
清空缓存
|
||||
|
||||
</dd>
|
||||
<dt id="disponse" class="callable">
|
||||
<span class="name"><a href="../amap_map/AMapController/disponse.html">disponse</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ void</span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
</dd>
|
||||
<dt id="getMapContentApprovalNumber" class="callable">
|
||||
<span class="name"><a href="../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>></span></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
获取地图审图号(普通地图) <a href="../amap_map/AMapController/getMapContentApprovalNumber.html">[...]</a>
|
||||
|
||||
</dd>
|
||||
<dt id="getSatelliteImageApprovalNumber" class="callable">
|
||||
<span class="name"><a href="../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>></span></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
获取地图审图号(卫星地图) <a href="../amap_map/AMapController/getSatelliteImageApprovalNumber.html">[...]</a>
|
||||
|
||||
</dd>
|
||||
<dt id="moveCamera" class="callable">
|
||||
<span class="name"><a href="../amap_map/AMapController/moveCamera.html">moveCamera</a></span><span class="signature">(<wbr><span class="parameter" id="moveCamera-param-cameraUpdate"><span class="type-annotation"><a href="../amap_map/CameraUpdate-class.html">CameraUpdate</a></span> <span class="parameter-name">cameraUpdate</span>, </span><span class="parameter" id="moveCamera-param-animated">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">animated</span>, </span><span class="parameter" id="moveCamera-param-duration"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span> <span class="parameter-name">duration</span>}</span>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
改变地图视角 <a href="../amap_map/AMapController/moveCamera.html">[...]</a>
|
||||
|
||||
</dd>
|
||||
<dt id="noSuchMethod" class="callable inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
||||
<span class="returntype parameter">→ dynamic</span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
Invoked when a non-existent method or property is accessed. <a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">[...]</a>
|
||||
<div class="features">inherited</div>
|
||||
</dd>
|
||||
<dt id="setRenderFps" class="callable">
|
||||
<span class="name"><a href="../amap_map/AMapController/setRenderFps.html">setRenderFps</a></span><span class="signature">(<wbr><span class="parameter" id="setRenderFps-param-fps"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span> <span class="parameter-name">fps</span></span>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
设置地图每秒渲染的帧数
|
||||
|
||||
</dd>
|
||||
<dt id="takeSnapshot" class="callable">
|
||||
<span class="name"><a href="../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/dart-typed_data/Uint8List-class.html">Uint8List</a></span>></span></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
地图截屏
|
||||
|
||||
</dd>
|
||||
<dt id="toString" class="callable inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
Returns a string representation of this object.
|
||||
<div class="features">inherited</div>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section class="summary offset-anchor inherited" id="operators">
|
||||
<h2>Operators</h2>
|
||||
<dl class="callables">
|
||||
<dt id="operator ==" class="callable inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
The equality operator. <a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">[...]</a>
|
||||
<div class="features">inherited</div>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="summary offset-anchor" id="static-methods">
|
||||
<h2>Static Methods</h2>
|
||||
<dl class="callables">
|
||||
<dt id="init" class="callable">
|
||||
<span class="name"><a href="../amap_map/AMapController/init.html">init</a></span><span class="signature">(<wbr><span class="parameter" id="init-param-id"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span> <span class="parameter-name">id</span>, </span><span class="parameter" id="init-param-initialCameration"><span class="type-annotation"><a href="../amap_map/CameraPosition-class.html">CameraPosition</a></span> <span class="parameter-name">initialCameration</span>, </span><span class="parameter" id="init-param-mapState"><span class="type-annotation">_MapState</span> <span class="parameter-name">mapState</span></span>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter"><a href="../amap_map/AMapController-class.html">AMapController</a></span>></span></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
根据传入的id初始化<a href="../amap_map/AMapController-class.html">AMapController</a>
|
||||
主要用于在<a href="../amap_map/AMapWidget-class.html">AMapWidget</a>初始化时在<a href="../amap_map/AMapWidget/onMapCreated.html">AMapWidget.onMapCreated</a>中初始化controller
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../static-assets/highlight.pack.js"></script>
|
||||
<script src="../static-assets/URI.js"></script>
|
||||
<script src="../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,138 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the channel property from the AMapController class, for the Dart programming language.">
|
||||
<title>channel property - AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">channel property</li>
|
||||
</ol>
|
||||
<div class="self-name">channel</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">channel property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapController class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">channel</span> property </h1></div>
|
||||
|
||||
|
||||
<section id="getter">
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/services/MethodChannel-class.html">MethodChannel</a></span>
|
||||
<span class="name ">channel</span>
|
||||
<div class="features">@<a href="https://api.flutter.dev/flutter/widgets/visibleForTesting-constant.html">visibleForTesting</a></div>
|
||||
</section>
|
||||
|
||||
<section class="desc markdown">
|
||||
<p>只用于测试
|
||||
用于与native的通信</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">@visibleForTesting
|
||||
MethodChannel get channel {
|
||||
return _methodChannel.channel(mapId);
|
||||
}</code></pre>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,133 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the clearDisk method from the AMapController class, for the Dart programming language.">
|
||||
<title>clearDisk method - AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">clearDisk method</li>
|
||||
</ol>
|
||||
<div class="self-name">clearDisk</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">clearDisk method</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapController class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">clearDisk</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
||||
<span class="name ">clearDisk</span>
|
||||
(<wbr>)
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>清空缓存</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">Future<void> clearDisk() {
|
||||
return _methodChannel.clearDisk(mapId: mapId);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,130 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the disponse method from the AMapController class, for the Dart programming language.">
|
||||
<title>disponse method - AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">disponse method</li>
|
||||
</ol>
|
||||
<div class="self-name">disponse</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">disponse method</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapController class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">disponse</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype">void</span>
|
||||
<span class="name ">disponse</span>
|
||||
(<wbr>)
|
||||
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">void disponse() {
|
||||
_methodChannel.dispose(id: mapId);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,135 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the getMapContentApprovalNumber method from the AMapController class, for the Dart programming language.">
|
||||
<title>getMapContentApprovalNumber method - AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">getMapContentApprovalNumber method</li>
|
||||
</ol>
|
||||
<div class="self-name">getMapContentApprovalNumber</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">getMapContentApprovalNumber method</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapController class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">getMapContentApprovalNumber</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>></span></span>
|
||||
<span class="name ">getMapContentApprovalNumber</span>
|
||||
(<wbr>)
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>获取地图审图号(普通地图)</p>
|
||||
<p>任何使用高德地图API调用地图服务的应用必须在其应用中对外透出审图号</p>
|
||||
<p>如高德地图在"关于"中体现</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">Future<String> getMapContentApprovalNumber() {
|
||||
return _methodChannel.getMapContentApprovalNumber(mapId: mapId);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,135 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the getSatelliteImageApprovalNumber method from the AMapController class, for the Dart programming language.">
|
||||
<title>getSatelliteImageApprovalNumber method - AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">getSatelliteImageApprovalNumber method</li>
|
||||
</ol>
|
||||
<div class="self-name">getSatelliteImageApprovalNumber</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">getSatelliteImageApprovalNumber method</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapController class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">getSatelliteImageApprovalNumber</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>></span></span>
|
||||
<span class="name ">getSatelliteImageApprovalNumber</span>
|
||||
(<wbr>)
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>获取地图审图号(卫星地图)</p>
|
||||
<p>任何使用高德地图API调用地图服务的应用必须在其应用中对外透出审图号</p>
|
||||
<p>如高德地图在"关于"中体现</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">Future<String> getSatelliteImageApprovalNumber() {
|
||||
return _methodChannel.getSatelliteImageApprovalNumber(mapId: mapId);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,147 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the init method from the AMapController class, for the Dart programming language.">
|
||||
<title>init method - AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">init method</li>
|
||||
</ol>
|
||||
<div class="self-name">init</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">init method</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapController class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">init</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/AMapController-class.html">AMapController</a></span>></span></span>
|
||||
<span class="name ">init</span>
|
||||
(<wbr><ol class="parameter-list"><li><span class="parameter" id="init-param-id"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span> <span class="parameter-name">id</span>, </span></li>
|
||||
<li><span class="parameter" id="init-param-initialCameration"><span class="type-annotation"><a href="../../amap_map/CameraPosition-class.html">CameraPosition</a></span> <span class="parameter-name">initialCameration</span>, </span></li>
|
||||
<li><span class="parameter" id="init-param-mapState"><span class="type-annotation">_MapState</span> <span class="parameter-name">mapState</span></span></li>
|
||||
</ol>)
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>根据传入的id初始化<a href="../../amap_map/AMapController-class.html">AMapController</a>
|
||||
主要用于在<a href="../../amap_map/AMapWidget-class.html">AMapWidget</a>初始化时在<a href="../../amap_map/AMapWidget/onMapCreated.html">AMapWidget.onMapCreated</a>中初始化controller</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static Future<AMapController> init(
|
||||
int id,
|
||||
CameraPosition initialCameration,
|
||||
_MapState mapState,
|
||||
) async {
|
||||
assert(id != null);
|
||||
await _methodChannel.init(id);
|
||||
return AMapController._(
|
||||
initialCameration,
|
||||
mapState,
|
||||
mapId: id,
|
||||
);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,128 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the mapId property from the AMapController class, for the Dart programming language.">
|
||||
<title>mapId property - AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">mapId property</li>
|
||||
</ol>
|
||||
<div class="self-name">mapId</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">mapId property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapController class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">mapId</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
||||
<span class="name ">mapId</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final int mapId
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,142 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the moveCamera method from the AMapController class, for the Dart programming language.">
|
||||
<title>moveCamera method - AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">moveCamera method</li>
|
||||
</ol>
|
||||
<div class="self-name">moveCamera</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">moveCamera method</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapController class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">moveCamera</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
||||
<span class="name ">moveCamera</span>
|
||||
(<wbr><ol class="parameter-list"><li><span class="parameter" id="moveCamera-param-cameraUpdate"><span class="type-annotation"><a href="../../amap_map/CameraUpdate-class.html">CameraUpdate</a></span> <span class="parameter-name">cameraUpdate</span>, </span></li>
|
||||
<li><span class="parameter" id="moveCamera-param-animated">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">animated</span>, </span></li>
|
||||
<li><span class="parameter" id="moveCamera-param-duration"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span> <span class="parameter-name">duration</span>}</span></li>
|
||||
</ol>)
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>改变地图视角</p>
|
||||
<p>通过<a href="../../amap_map/CameraUpdate-class.html">CameraUpdate</a>对象设置新的中心点、缩放比例、放大缩小、显示区域等内容</p>
|
||||
<p>可选属性<code>animated</code>用于控制是否执行动画移动</p>
|
||||
<p>可选属性<code>duration</code>用于控制执行动画的时长,单位:毫秒</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">Future<void> moveCamera(CameraUpdate cameraUpdate,
|
||||
{bool animated, int duration}) {
|
||||
assert(cameraUpdate != null);
|
||||
return _methodChannel.moveCamera(cameraUpdate,
|
||||
mapId: mapId, animated: animated, duration: duration);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,134 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the setRenderFps method from the AMapController class, for the Dart programming language.">
|
||||
<title>setRenderFps method - AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">setRenderFps method</li>
|
||||
</ol>
|
||||
<div class="self-name">setRenderFps</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">setRenderFps method</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapController class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">setRenderFps</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
||||
<span class="name ">setRenderFps</span>
|
||||
(<wbr><ol class="parameter-list"><li><span class="parameter" id="setRenderFps-param-fps"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span> <span class="parameter-name">fps</span></span></li>
|
||||
</ol>)
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>设置地图每秒渲染的帧数</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">Future<void> setRenderFps(int fps) {
|
||||
return _methodChannel.setRenderFps(fps, mapId: mapId);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,133 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the takeSnapshot method from the AMapController class, for the Dart programming language.">
|
||||
<title>takeSnapshot method - AMapController class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">takeSnapshot method</li>
|
||||
</ol>
|
||||
<div class="self-name">takeSnapshot</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li class="self-crumb">takeSnapshot method</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapController class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapController-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapController/channel.html">channel</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapController/mapId.html">mapId</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/clearDisk.html">clearDisk</a></li>
|
||||
<li><a href="../../amap_map/AMapController/disponse.html">disponse</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getMapContentApprovalNumber.html">getMapContentApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/getSatelliteImageApprovalNumber.html">getSatelliteImageApprovalNumber</a></li>
|
||||
<li><a href="../../amap_map/AMapController/moveCamera.html">moveCamera</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/AMapController/setRenderFps.html">setRenderFps</a></li>
|
||||
<li><a href="../../amap_map/AMapController/takeSnapshot.html">takeSnapshot</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapController-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapController-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/AMapController/init.html">init</a></li>
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">takeSnapshot</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/dart-typed_data/Uint8List-class.html">Uint8List</a></span>></span></span>
|
||||
<span class="name ">takeSnapshot</span>
|
||||
(<wbr>)
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图截屏</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">Future<Uint8List> takeSnapshot() {
|
||||
return _methodChannel.takeSnapshot(mapId: mapId);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,219 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the AMapWidget constructor from the Class AMapWidget class from the amap_map library, for the Dart programming language.">
|
||||
<title>AMapWidget constructor - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">AMapWidget const constructor</li>
|
||||
</ol>
|
||||
<div class="self-name">AMapWidget</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">AMapWidget const constructor</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-left-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-constructor">AMapWidget</span> constructor </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
const
|
||||
<span class="name ">AMapWidget</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a></span> <span class="parameter-name">key</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-apiKey"><span class="type-annotation">AMapApiKey</span> <span class="parameter-name">apiKey</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-initialCameraPosition"><span class="type-annotation"><a href="../../amap_map/CameraPosition-class.html">CameraPosition</a></span> <span class="parameter-name">initialCameraPosition</span>: <span class="default-value">const CameraPosition(target: LatLng(39.909187, 116.397451), zoom: 10)</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-mapType"><span class="type-annotation"><a href="../../amap_map/MapType-class.html">MapType</a></span> <span class="parameter-name">mapType</span>: <span class="default-value">MapType.normal</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-buildingsEnabled"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">buildingsEnabled</span>: <span class="default-value">true</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-compassEnabled"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">compassEnabled</span>: <span class="default-value">false</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-labelsEnabled"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">labelsEnabled</span>: <span class="default-value">true</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-limitBounds"><span class="type-annotation">LatLngBounds</span> <span class="parameter-name">limitBounds</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-minMaxZoomPreference"><span class="type-annotation"><a href="../../amap_map/MinMaxZoomPreference-class.html">MinMaxZoomPreference</a></span> <span class="parameter-name">minMaxZoomPreference</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-rotateGesturesEnabled"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">rotateGesturesEnabled</span>: <span class="default-value">true</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-scaleEnabled"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">scaleEnabled</span>: <span class="default-value">true</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-scrollGesturesEnabled"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">scrollGesturesEnabled</span>: <span class="default-value">true</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-tiltGesturesEnabled"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">tiltGesturesEnabled</span>: <span class="default-value">true</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-touchPoiEnabled"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">touchPoiEnabled</span>: <span class="default-value">true</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-trafficEnabled"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">trafficEnabled</span>: <span class="default-value">false</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-zoomGesturesEnabled"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">zoomGesturesEnabled</span>: <span class="default-value">true</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-onMapCreated"><span class="type-annotation"><a href="../../amap_map/MapCreatedCallback.html">MapCreatedCallback</a></span> <span class="parameter-name">onMapCreated</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-gestureRecognizers"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/foundation/Factory-class.html">Factory</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/gestures/OneSequenceGestureRecognizer-class.html">OneSequenceGestureRecognizer</a></span>></span></span>></span></span> <span class="parameter-name">gestureRecognizers</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-customStyleOptions"><span class="type-annotation"><a href="../../amap_map/CustomStyleOptions-class.html">CustomStyleOptions</a></span> <span class="parameter-name">customStyleOptions</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-myLocationStyleOptions"><span class="type-annotation"><a href="../../amap_map/MyLocationStyleOptions-class.html">MyLocationStyleOptions</a></span> <span class="parameter-name">myLocationStyleOptions</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-onCameraMove"><span class="type-annotation">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/CameraPosition-class.html">CameraPosition</a></span>></span></span> <span class="parameter-name">onCameraMove</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-onCameraMoveEnd"><span class="type-annotation">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/CameraPosition-class.html">CameraPosition</a></span>></span></span> <span class="parameter-name">onCameraMoveEnd</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-onLocationChanged"><span class="type-annotation">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter">AMapLocation</span>></span></span> <span class="parameter-name">onLocationChanged</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-onTap"><span class="type-annotation">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter">LatLng</span>></span></span> <span class="parameter-name">onTap</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-onLongPress"><span class="type-annotation">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter">LatLng</span>></span></span> <span class="parameter-name">onLongPress</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-onPoiTouched"><span class="type-annotation">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter">AMapPoi</span>></span></span> <span class="parameter-name">onPoiTouched</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-markers"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/Marker-class.html">Marker</a></span>></span></span> <span class="parameter-name">markers</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-polylines"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/Polyline-class.html">Polyline</a></span>></span></span> <span class="parameter-name">polylines</span>, </span></li>
|
||||
<li><span class="parameter" id="-param-polygons"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/Polygon-class.html">Polygon</a></span>></span></span> <span class="parameter-name">polygons</span>}</span></li>
|
||||
</ol>)
|
||||
</section>
|
||||
|
||||
<section class="desc markdown">
|
||||
<p>创建一个展示高德地图的widget
|
||||
<a href="https://api.flutter.dev/flutter/dart-core/AssertionError-class.html">AssertionError</a> will be thrown if <code>initialCameraPosition</code> is null;</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">const AMapWidget({
|
||||
Key key,
|
||||
this.apiKey,
|
||||
this.initialCameraPosition =
|
||||
const CameraPosition(target: LatLng(39.909187, 116.397451), zoom: 10),
|
||||
this.mapType = MapType.normal,
|
||||
this.buildingsEnabled = true,
|
||||
this.compassEnabled = false,
|
||||
this.labelsEnabled = true,
|
||||
this.limitBounds,
|
||||
this.minMaxZoomPreference,
|
||||
this.rotateGesturesEnabled = true,
|
||||
this.scaleEnabled = true,
|
||||
this.scrollGesturesEnabled = true,
|
||||
this.tiltGesturesEnabled = true,
|
||||
this.touchPoiEnabled = true,
|
||||
this.trafficEnabled = false,
|
||||
this.zoomGesturesEnabled = true,
|
||||
this.onMapCreated,
|
||||
this.gestureRecognizers,
|
||||
this.customStyleOptions,
|
||||
this.myLocationStyleOptions,
|
||||
this.onCameraMove,
|
||||
this.onCameraMoveEnd,
|
||||
this.onLocationChanged,
|
||||
this.onTap,
|
||||
this.onLongPress,
|
||||
this.onPoiTouched,
|
||||
this.markers,
|
||||
this.polylines,
|
||||
this.polygons,
|
||||
}) : assert(initialCameraPosition != null),
|
||||
super(key: key);</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the apiKey property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>apiKey property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">apiKey property</li>
|
||||
</ol>
|
||||
<div class="self-name">apiKey</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">apiKey property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">apiKey</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype">AMapApiKey</span>
|
||||
<span class="name ">apiKey</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>高德开放平台的key</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final AMapApiKey apiKey
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the buildingsEnabled property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>buildingsEnabled property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">buildingsEnabled property</li>
|
||||
</ol>
|
||||
<div class="self-name">buildingsEnabled</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">buildingsEnabled property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">buildingsEnabled</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
<span class="name ">buildingsEnabled</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>是否显示3D建筑物</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final bool buildingsEnabled
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the compassEnabled property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>compassEnabled property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">compassEnabled property</li>
|
||||
</ol>
|
||||
<div class="self-name">compassEnabled</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">compassEnabled property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">compassEnabled</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
<span class="name ">compassEnabled</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>是否显示指南针</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final bool compassEnabled
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,162 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the createState method from the AMapWidget class, for the Dart programming language.">
|
||||
<title>createState method - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">createState method</li>
|
||||
</ol>
|
||||
<div class="self-name">createState</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">createState method</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">createState</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<div>
|
||||
<ol class="annotation-list">
|
||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
||||
</ol>
|
||||
</div>
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a></span>></span></span>
|
||||
<span class="name ">createState</span>
|
||||
(<wbr>)
|
||||
<div class="features">override</div>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">@override
|
||||
State<StatefulWidget> createState() => _MapState();</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the customStyleOptions property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>customStyleOptions property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">customStyleOptions property</li>
|
||||
</ol>
|
||||
<div class="self-name">customStyleOptions</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">customStyleOptions property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">customStyleOptions</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="../../amap_map/CustomStyleOptions-class.html">CustomStyleOptions</a></span>
|
||||
<span class="name ">customStyleOptions</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>自定义地图样式</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final CustomStyleOptions customStyleOptions
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the gestureRecognizers property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>gestureRecognizers property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">gestureRecognizers property</li>
|
||||
</ol>
|
||||
<div class="self-name">gestureRecognizers</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">gestureRecognizers property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">gestureRecognizers</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/foundation/Factory-class.html">Factory</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/gestures/OneSequenceGestureRecognizer-class.html">OneSequenceGestureRecognizer</a></span>></span></span>></span></span>
|
||||
<span class="name ">gestureRecognizers</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>需要应用到地图上的手势集合</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the initialCameraPosition property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>initialCameraPosition property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">initialCameraPosition property</li>
|
||||
</ol>
|
||||
<div class="self-name">initialCameraPosition</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">initialCameraPosition property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">initialCameraPosition</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="../../amap_map/CameraPosition-class.html">CameraPosition</a></span>
|
||||
<span class="name ">initialCameraPosition</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>初始化时的地图中心点</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final CameraPosition initialCameraPosition
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the labelsEnabled property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>labelsEnabled property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">labelsEnabled property</li>
|
||||
</ol>
|
||||
<div class="self-name">labelsEnabled</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">labelsEnabled property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">labelsEnabled</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
<span class="name ">labelsEnabled</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>是否显示底图文字标注</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final bool labelsEnabled
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the limitBounds property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>limitBounds property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">limitBounds property</li>
|
||||
</ol>
|
||||
<div class="self-name">limitBounds</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">limitBounds property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">limitBounds</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype">LatLngBounds</span>
|
||||
<span class="name ">limitBounds</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图显示范围</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final LatLngBounds limitBounds
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the mapType property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>mapType property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">mapType property</li>
|
||||
</ol>
|
||||
<div class="self-name">mapType</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">mapType property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">mapType</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="../../amap_map/MapType-class.html">MapType</a></span>
|
||||
<span class="name ">mapType</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图类型</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final MapType mapType
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the markers property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>markers property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">markers property</li>
|
||||
</ol>
|
||||
<div class="self-name">markers</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">markers property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">markers</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/Marker-class.html">Marker</a></span>></span></span>
|
||||
<span class="name ">markers</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图上显示的Marker</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final Set<Marker> markers
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,156 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the minMaxZoomPreference property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>minMaxZoomPreference property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">minMaxZoomPreference property</li>
|
||||
</ol>
|
||||
<div class="self-name">minMaxZoomPreference</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">minMaxZoomPreference property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">minMaxZoomPreference</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="../../amap_map/MinMaxZoomPreference-class.html">MinMaxZoomPreference</a></span>
|
||||
<span class="name ">minMaxZoomPreference</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final MinMaxZoomPreference minMaxZoomPreference
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the myLocationStyleOptions property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>myLocationStyleOptions property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">myLocationStyleOptions property</li>
|
||||
</ol>
|
||||
<div class="self-name">myLocationStyleOptions</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">myLocationStyleOptions property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">myLocationStyleOptions</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="../../amap_map/MyLocationStyleOptions-class.html">MyLocationStyleOptions</a></span>
|
||||
<span class="name ">myLocationStyleOptions</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>定位小蓝点</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final MyLocationStyleOptions myLocationStyleOptions
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the onCameraMove property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>onCameraMove property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onCameraMove property</li>
|
||||
</ol>
|
||||
<div class="self-name">onCameraMove</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onCameraMove property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">onCameraMove</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/CameraPosition-class.html">CameraPosition</a></span>></span></span>
|
||||
<span class="name ">onCameraMove</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>相机视角持续移动的回调</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final ArgumentCallback<CameraPosition> onCameraMove
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the onCameraMoveEnd property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>onCameraMoveEnd property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onCameraMoveEnd property</li>
|
||||
</ol>
|
||||
<div class="self-name">onCameraMoveEnd</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onCameraMoveEnd property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">onCameraMoveEnd</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/CameraPosition-class.html">CameraPosition</a></span>></span></span>
|
||||
<span class="name ">onCameraMoveEnd</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>相机视角移动结束的回调</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final ArgumentCallback<CameraPosition> onCameraMoveEnd
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the onLocationChanged property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>onLocationChanged property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onLocationChanged property</li>
|
||||
</ol>
|
||||
<div class="self-name">onLocationChanged</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onLocationChanged property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">onLocationChanged</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter">AMapLocation</span>></span></span>
|
||||
<span class="name ">onLocationChanged</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>位置回调</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final ArgumentCallback<AMapLocation> onLocationChanged
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the onLongPress property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>onLongPress property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onLongPress property</li>
|
||||
</ol>
|
||||
<div class="self-name">onLongPress</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onLongPress property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">onLongPress</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter">LatLng</span>></span></span>
|
||||
<span class="name ">onLongPress</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图长按事件的回调</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final ArgumentCallback<LatLng> onLongPress
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the onMapCreated property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>onMapCreated property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onMapCreated property</li>
|
||||
</ol>
|
||||
<div class="self-name">onMapCreated</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onMapCreated property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">onMapCreated</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="../../amap_map/MapCreatedCallback.html">MapCreatedCallback</a></span>
|
||||
<span class="name ">onMapCreated</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图创建成功的回调, 收到此回调之后才可以操作地图</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final MapCreatedCallback onMapCreated
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the onPoiTouched property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>onPoiTouched property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onPoiTouched property</li>
|
||||
</ol>
|
||||
<div class="self-name">onPoiTouched</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onPoiTouched property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">onPoiTouched</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter">AMapPoi</span>></span></span>
|
||||
<span class="name ">onPoiTouched</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图POI的点击回调,需要<code>touchPoiEnabled</code>true,才能回调</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final ArgumentCallback<AMapPoi> onPoiTouched
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the onTap property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>onTap property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onTap property</li>
|
||||
</ol>
|
||||
<div class="self-name">onTap</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">onTap property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">onTap</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype">ArgumentCallback<span class="signature"><<wbr><span class="type-parameter">LatLng</span>></span></span>
|
||||
<span class="name ">onTap</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图单击事件的回调</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final ArgumentCallback<LatLng> onTap
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the polygons property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>polygons property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">polygons property</li>
|
||||
</ol>
|
||||
<div class="self-name">polygons</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">polygons property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">polygons</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/Polygon-class.html">Polygon</a></span>></span></span>
|
||||
<span class="name ">polygons</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图上显示的polygon</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final Set<Polygon> polygons
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the polylines property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>polylines property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">polylines property</li>
|
||||
</ol>
|
||||
<div class="self-name">polylines</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">polylines property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">polylines</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/Polyline-class.html">Polyline</a></span>></span></span>
|
||||
<span class="name ">polylines</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图上显示的polyline</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final Set<Polyline> polylines
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the rotateGesturesEnabled property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>rotateGesturesEnabled property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">rotateGesturesEnabled property</li>
|
||||
</ol>
|
||||
<div class="self-name">rotateGesturesEnabled</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">rotateGesturesEnabled property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">rotateGesturesEnabled</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
<span class="name ">rotateGesturesEnabled</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>是否支持旋转手势</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final bool rotateGesturesEnabled
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the scaleEnabled property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>scaleEnabled property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">scaleEnabled property</li>
|
||||
</ol>
|
||||
<div class="self-name">scaleEnabled</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">scaleEnabled property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">scaleEnabled</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
<span class="name ">scaleEnabled</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>是否显示比例尺</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final bool scaleEnabled
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the scrollGesturesEnabled property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>scrollGesturesEnabled property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">scrollGesturesEnabled property</li>
|
||||
</ol>
|
||||
<div class="self-name">scrollGesturesEnabled</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">scrollGesturesEnabled property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">scrollGesturesEnabled</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
<span class="name ">scrollGesturesEnabled</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>是否支持滑动手势</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final bool scrollGesturesEnabled
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the tiltGesturesEnabled property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>tiltGesturesEnabled property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">tiltGesturesEnabled property</li>
|
||||
</ol>
|
||||
<div class="self-name">tiltGesturesEnabled</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">tiltGesturesEnabled property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">tiltGesturesEnabled</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
<span class="name ">tiltGesturesEnabled</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>是否支持倾斜手势</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final bool tiltGesturesEnabled
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the touchPoiEnabled property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>touchPoiEnabled property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">touchPoiEnabled property</li>
|
||||
</ol>
|
||||
<div class="self-name">touchPoiEnabled</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">touchPoiEnabled property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">touchPoiEnabled</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
<span class="name ">touchPoiEnabled</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>地图poi是否允许点击</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final bool touchPoiEnabled
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the trafficEnabled property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>trafficEnabled property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">trafficEnabled property</li>
|
||||
</ol>
|
||||
<div class="self-name">trafficEnabled</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">trafficEnabled property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">trafficEnabled</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
<span class="name ">trafficEnabled</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>显示路况开关</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final bool trafficEnabled
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the zoomGesturesEnabled property from the AMapWidget class, for the Dart programming language.">
|
||||
<title>zoomGesturesEnabled property - AMapWidget class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">zoomGesturesEnabled property</li>
|
||||
</ol>
|
||||
<div class="self-name">zoomGesturesEnabled</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li class="self-crumb">zoomGesturesEnabled property</li>
|
||||
</ol>
|
||||
|
||||
<h5>AMapWidget class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/AMapWidget.html">AMapWidget</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/AMapWidget-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li><a href="../../amap_map/AMapWidget/apiKey.html">apiKey</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/buildingsEnabled.html">buildingsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/compassEnabled.html">compassEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/customStyleOptions.html">customStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/gestureRecognizers.html">gestureRecognizers</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/initialCameraPosition.html">initialCameraPosition</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/labelsEnabled.html">labelsEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/limitBounds.html">limitBounds</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/mapType.html">mapType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/markers.html">markers</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/minMaxZoomPreference.html">minMaxZoomPreference</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/myLocationStyleOptions.html">myLocationStyleOptions</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMove.html">onCameraMove</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onCameraMoveEnd.html">onCameraMoveEnd</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLocationChanged.html">onLocationChanged</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onLongPress.html">onLongPress</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onMapCreated.html">onMapCreated</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onPoiTouched.html">onPoiTouched</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/onTap.html">onTap</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polygons.html">polygons</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/polylines.html">polylines</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/rotateGesturesEnabled.html">rotateGesturesEnabled</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scaleEnabled.html">scaleEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/scrollGesturesEnabled.html">scrollGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/tiltGesturesEnabled.html">tiltGesturesEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/touchPoiEnabled.html">touchPoiEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/trafficEnabled.html">trafficEnabled</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/zoomGesturesEnabled.html">zoomGesturesEnabled</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/AMapWidget-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
||||
<li><a href="../../amap_map/AMapWidget/createState.html">createState</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/AMapWidget-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">zoomGesturesEnabled</span> property </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
<span class="name ">zoomGesturesEnabled</span>
|
||||
<div class="features">final</div>
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>是否支持缩放手势</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">final bool zoomGesturesEnabled
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,282 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the BaseOverlay class from the amap_map library, for the Dart programming language.">
|
||||
<title>BaseOverlay class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../static-assets/styles.css">
|
||||
<link rel="icon" href="../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../index.html">amap_map</a></li>
|
||||
<li><a href="../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li class="self-crumb">BaseOverlay class</li>
|
||||
</ol>
|
||||
<div class="self-name">BaseOverlay</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../index.html">amap_map</a></li>
|
||||
<li><a href="../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li class="self-crumb">BaseOverlay class</li>
|
||||
</ol>
|
||||
|
||||
<h5>amap_map library</h5>
|
||||
<ol>
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#classes">Classes</a></li>
|
||||
<li><a href="../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li><a href="../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li><a href="../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li><a href="../amap_map/CameraPosition-class.html">CameraPosition</a></li>
|
||||
<li><a href="../amap_map/CameraTargetBounds-class.html">CameraTargetBounds</a></li>
|
||||
<li><a href="../amap_map/CameraUpdate-class.html">CameraUpdate</a></li>
|
||||
<li><a href="../amap_map/CustomStyleOptions-class.html">CustomStyleOptions</a></li>
|
||||
<li><a href="../amap_map/InfoWindow-class.html">InfoWindow</a></li>
|
||||
<li><a href="../amap_map/Marker-class.html">Marker</a></li>
|
||||
<li><a href="../amap_map/MarkerUpdates-class.html">MarkerUpdates</a></li>
|
||||
<li><a href="../amap_map/MinMaxZoomPreference-class.html">MinMaxZoomPreference</a></li>
|
||||
<li><a href="../amap_map/MyLocationStyleOptions-class.html">MyLocationStyleOptions</a></li>
|
||||
<li><a href="../amap_map/Polygon-class.html">Polygon</a></li>
|
||||
<li><a href="../amap_map/PolygonUpdates-class.html">PolygonUpdates</a></li>
|
||||
<li><a href="../amap_map/Polyline-class.html">Polyline</a></li>
|
||||
<li><a href="../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#functions">Functions</a></li>
|
||||
<li><a href="../amap_map/keyByMarkerId.html">keyByMarkerId</a></li>
|
||||
<li><a href="../amap_map/keyByPolygonId.html">keyByPolygonId</a></li>
|
||||
<li><a href="../amap_map/keyByPolylineId.html">keyByPolylineId</a></li>
|
||||
<li><a href="../amap_map/serializeOverlaySet.html">serializeOverlaySet</a></li>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#enums">Enums</a></li>
|
||||
<li><a href="../amap_map/CapType-class.html">CapType</a></li>
|
||||
<li><a href="../amap_map/DashLineType-class.html">DashLineType</a></li>
|
||||
<li><a href="../amap_map/JoinType-class.html">JoinType</a></li>
|
||||
<li><a href="../amap_map/MapType-class.html">MapType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#typedefs">Typedefs</a></li>
|
||||
<li><a href="../amap_map/MapCreatedCallback.html">MapCreatedCallback</a></li>
|
||||
<li><a href="../amap_map/MarkerDragEndCallback.html">MarkerDragEndCallback</a></li>
|
||||
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-class">BaseOverlay</span> class </h1></div>
|
||||
|
||||
<section class="desc markdown">
|
||||
<p>地图覆盖物基类</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<dl class="dl-horizontal">
|
||||
|
||||
|
||||
|
||||
<dt>Implementers</dt>
|
||||
<dd><ul class="comma-separated clazz-relationships">
|
||||
<li><a href="../amap_map/Marker-class.html">Marker</a></li>
|
||||
<li><a href="../amap_map/Polygon-class.html">Polygon</a></li>
|
||||
<li><a href="../amap_map/Polyline-class.html">Polyline</a></li>
|
||||
</ul></dd>
|
||||
|
||||
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section class="summary offset-anchor" id="constructors">
|
||||
<h2>Constructors</h2>
|
||||
|
||||
<dl class="constructor-summary-list">
|
||||
<dt id="BaseOverlay" class="callable">
|
||||
<span class="name"><a href="../amap_map/BaseOverlay/BaseOverlay.html">BaseOverlay</a></span><span class="signature">()</span>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section class="summary offset-anchor" id="instance-properties">
|
||||
<h2>Properties</h2>
|
||||
|
||||
<dl class="properties">
|
||||
<dt id="hashCode" class="property inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></span>
|
||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
The hash code for this object. <a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">[...]</a>
|
||||
<div class="features">read-only, inherited</div>
|
||||
</dd>
|
||||
<dt id="id" class="property">
|
||||
<span class="name"><a href="../amap_map/BaseOverlay/id.html">id</a></span>
|
||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
<div class="features">read-only</div>
|
||||
</dd>
|
||||
<dt id="runtimeType" class="property inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
A representation of the runtime type of the object.
|
||||
<div class="features">read-only, inherited</div>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section class="summary offset-anchor" id="instance-methods">
|
||||
<h2>Methods</h2>
|
||||
<dl class="callables">
|
||||
<dt id="clone" class="callable">
|
||||
<span class="name"><a href="../amap_map/BaseOverlay/clone.html">clone</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ <a href="../amap_map/BaseOverlay-class.html">BaseOverlay</a></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
</dd>
|
||||
<dt id="noSuchMethod" class="callable inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
||||
<span class="returntype parameter">→ dynamic</span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
Invoked when a non-existent method or property is accessed. <a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">[...]</a>
|
||||
<div class="features">inherited</div>
|
||||
</dd>
|
||||
<dt id="setIdForCopy" class="callable">
|
||||
<span class="name"><a href="../amap_map/BaseOverlay/setIdForCopy.html">setIdForCopy</a></span><span class="signature">(<wbr><span class="parameter" id="setIdForCopy-param-copyId"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">copyId</span></span>)
|
||||
<span class="returntype parameter">→ void</span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
</dd>
|
||||
<dt id="toMap" class="callable">
|
||||
<span class="name"><a href="../amap_map/BaseOverlay/toMap.html">toMap</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/Map-class.html">Map</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>, <span class="type-parameter">dynamic</span>></span></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
</dd>
|
||||
<dt id="toString" class="callable inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
Returns a string representation of this object.
|
||||
<div class="features">inherited</div>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section class="summary offset-anchor inherited" id="operators">
|
||||
<h2>Operators</h2>
|
||||
<dl class="callables">
|
||||
<dt id="operator ==" class="callable inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
The equality operator. <a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">[...]</a>
|
||||
<div class="features">inherited</div>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/BaseOverlay-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../amap_map/BaseOverlay/BaseOverlay.html">BaseOverlay</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../amap_map/BaseOverlay-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../amap_map/BaseOverlay/id.html">id</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/BaseOverlay-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../amap_map/BaseOverlay/clone.html">clone</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../amap_map/BaseOverlay/setIdForCopy.html">setIdForCopy</a></li>
|
||||
<li><a href="../amap_map/BaseOverlay/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../amap_map/BaseOverlay-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../static-assets/highlight.pack.js"></script>
|
||||
<script src="../static-assets/URI.js"></script>
|
||||
<script src="../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,123 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the BaseOverlay constructor from the Class BaseOverlay class from the amap_map library, for the Dart programming language.">
|
||||
<title>BaseOverlay constructor - BaseOverlay class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li class="self-crumb">BaseOverlay constructor</li>
|
||||
</ol>
|
||||
<div class="self-name">BaseOverlay</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li class="self-crumb">BaseOverlay constructor</li>
|
||||
</ol>
|
||||
|
||||
<h5>BaseOverlay class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BaseOverlay-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/BaseOverlay.html">BaseOverlay</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/BaseOverlay-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/id.html">id</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BaseOverlay-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/clone.html">clone</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/setIdForCopy.html">setIdForCopy</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BaseOverlay-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-left-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-constructor">BaseOverlay</span> constructor </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
|
||||
<span class="name ">BaseOverlay</span>(<wbr>)
|
||||
</section>
|
||||
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">BaseOverlay() {
|
||||
this._id = this.hashCode.toString();
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,126 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the clone method from the BaseOverlay class, for the Dart programming language.">
|
||||
<title>clone method - BaseOverlay class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li class="self-crumb">clone method</li>
|
||||
</ol>
|
||||
<div class="self-name">clone</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li class="self-crumb">clone method</li>
|
||||
</ol>
|
||||
|
||||
<h5>BaseOverlay class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BaseOverlay-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/BaseOverlay.html">BaseOverlay</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/BaseOverlay-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/id.html">id</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BaseOverlay-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/clone.html">clone</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/setIdForCopy.html">setIdForCopy</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BaseOverlay-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">clone</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></span>
|
||||
<span class="name ">clone</span>
|
||||
(<wbr>)
|
||||
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">BaseOverlay clone() {
|
||||
throw UnimplementedError(
|
||||
'BaseOverlay subClass should implement this methed.');
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,126 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the id property from the BaseOverlay class, for the Dart programming language.">
|
||||
<title>id property - BaseOverlay class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li class="self-crumb">id property</li>
|
||||
</ol>
|
||||
<div class="self-name">id</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li class="self-crumb">id property</li>
|
||||
</ol>
|
||||
|
||||
<h5>BaseOverlay class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BaseOverlay-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/BaseOverlay.html">BaseOverlay</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/BaseOverlay-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/id.html">id</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BaseOverlay-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/clone.html">clone</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/setIdForCopy.html">setIdForCopy</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BaseOverlay-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">id</span> property </h1></div>
|
||||
|
||||
|
||||
<section id="getter">
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
||||
<span class="name ">id</span>
|
||||
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">String get id => _id;</code></pre>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,124 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the setIdForCopy method from the BaseOverlay class, for the Dart programming language.">
|
||||
<title>setIdForCopy method - BaseOverlay class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li class="self-crumb">setIdForCopy method</li>
|
||||
</ol>
|
||||
<div class="self-name">setIdForCopy</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li class="self-crumb">setIdForCopy method</li>
|
||||
</ol>
|
||||
|
||||
<h5>BaseOverlay class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BaseOverlay-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/BaseOverlay.html">BaseOverlay</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/BaseOverlay-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/id.html">id</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BaseOverlay-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/clone.html">clone</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/setIdForCopy.html">setIdForCopy</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BaseOverlay-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">setIdForCopy</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype">void</span>
|
||||
<span class="name ">setIdForCopy</span>
|
||||
(<wbr><ol class="parameter-list"><li><span class="parameter" id="setIdForCopy-param-copyId"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">copyId</span></span></li>
|
||||
</ol>)
|
||||
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">void setIdForCopy(String copyId) => _id = copyId;</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,126 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the toMap method from the BaseOverlay class, for the Dart programming language.">
|
||||
<title>toMap method - BaseOverlay class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li class="self-crumb">toMap method</li>
|
||||
</ol>
|
||||
<div class="self-name">toMap</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li class="self-crumb">toMap method</li>
|
||||
</ol>
|
||||
|
||||
<h5>BaseOverlay class</h5>
|
||||
<ol>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BaseOverlay-class.html#constructors">Constructors</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/BaseOverlay.html">BaseOverlay</a></li>
|
||||
|
||||
<li class="section-title">
|
||||
<a href="../../amap_map/BaseOverlay-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/id.html">id</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BaseOverlay-class.html#instance-methods">Methods</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/clone.html">clone</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/setIdForCopy.html">setIdForCopy</a></li>
|
||||
<li><a href="../../amap_map/BaseOverlay/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BaseOverlay-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">toMap</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/Map-class.html">Map</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>, <span class="type-parameter">dynamic</span>></span></span>
|
||||
<span class="name ">toMap</span>
|
||||
(<wbr>)
|
||||
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">Map<String, dynamic> toMap() {
|
||||
throw UnimplementedError(
|
||||
'BaseOverlay subClass should implement this methed.');
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,399 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the BitmapDescriptor class from the amap_map library, for the Dart programming language.">
|
||||
<title>BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../static-assets/styles.css">
|
||||
<link rel="icon" href="../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../index.html">amap_map</a></li>
|
||||
<li><a href="../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li class="self-crumb">BitmapDescriptor class</li>
|
||||
</ol>
|
||||
<div class="self-name">BitmapDescriptor</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../index.html">amap_map</a></li>
|
||||
<li><a href="../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li class="self-crumb">BitmapDescriptor class</li>
|
||||
</ol>
|
||||
|
||||
<h5>amap_map library</h5>
|
||||
<ol>
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#classes">Classes</a></li>
|
||||
<li><a href="../amap_map/AMapController-class.html">AMapController</a></li>
|
||||
<li><a href="../amap_map/AMapWidget-class.html">AMapWidget</a></li>
|
||||
<li><a href="../amap_map/BaseOverlay-class.html">BaseOverlay</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li><a href="../amap_map/CameraPosition-class.html">CameraPosition</a></li>
|
||||
<li><a href="../amap_map/CameraTargetBounds-class.html">CameraTargetBounds</a></li>
|
||||
<li><a href="../amap_map/CameraUpdate-class.html">CameraUpdate</a></li>
|
||||
<li><a href="../amap_map/CustomStyleOptions-class.html">CustomStyleOptions</a></li>
|
||||
<li><a href="../amap_map/InfoWindow-class.html">InfoWindow</a></li>
|
||||
<li><a href="../amap_map/Marker-class.html">Marker</a></li>
|
||||
<li><a href="../amap_map/MarkerUpdates-class.html">MarkerUpdates</a></li>
|
||||
<li><a href="../amap_map/MinMaxZoomPreference-class.html">MinMaxZoomPreference</a></li>
|
||||
<li><a href="../amap_map/MyLocationStyleOptions-class.html">MyLocationStyleOptions</a></li>
|
||||
<li><a href="../amap_map/Polygon-class.html">Polygon</a></li>
|
||||
<li><a href="../amap_map/PolygonUpdates-class.html">PolygonUpdates</a></li>
|
||||
<li><a href="../amap_map/Polyline-class.html">Polyline</a></li>
|
||||
<li><a href="../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#functions">Functions</a></li>
|
||||
<li><a href="../amap_map/keyByMarkerId.html">keyByMarkerId</a></li>
|
||||
<li><a href="../amap_map/keyByPolygonId.html">keyByPolygonId</a></li>
|
||||
<li><a href="../amap_map/keyByPolylineId.html">keyByPolylineId</a></li>
|
||||
<li><a href="../amap_map/serializeOverlaySet.html">serializeOverlaySet</a></li>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#enums">Enums</a></li>
|
||||
<li><a href="../amap_map/CapType-class.html">CapType</a></li>
|
||||
<li><a href="../amap_map/DashLineType-class.html">DashLineType</a></li>
|
||||
<li><a href="../amap_map/JoinType-class.html">JoinType</a></li>
|
||||
<li><a href="../amap_map/MapType-class.html">MapType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/amap_map-library.html#typedefs">Typedefs</a></li>
|
||||
<li><a href="../amap_map/MapCreatedCallback.html">MapCreatedCallback</a></li>
|
||||
<li><a href="../amap_map/MarkerDragEndCallback.html">MarkerDragEndCallback</a></li>
|
||||
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-class">BitmapDescriptor</span> class </h1></div>
|
||||
|
||||
<section class="desc markdown">
|
||||
<p>Bitmap工具类</p>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
<section class="summary offset-anchor inherited" id="instance-properties">
|
||||
<h2>Properties</h2>
|
||||
|
||||
<dl class="properties">
|
||||
<dt id="hashCode" class="property inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></span>
|
||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
The hash code for this object. <a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">[...]</a>
|
||||
<div class="features">read-only, inherited</div>
|
||||
</dd>
|
||||
<dt id="runtimeType" class="property inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
A representation of the runtime type of the object.
|
||||
<div class="features">read-only, inherited</div>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section class="summary offset-anchor" id="instance-methods">
|
||||
<h2>Methods</h2>
|
||||
<dl class="callables">
|
||||
<dt id="noSuchMethod" class="callable inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
||||
<span class="returntype parameter">→ dynamic</span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
Invoked when a non-existent method or property is accessed. <a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">[...]</a>
|
||||
<div class="features">inherited</div>
|
||||
</dd>
|
||||
<dt id="toMap" class="callable">
|
||||
<span class="name"><a href="../amap_map/BitmapDescriptor/toMap.html">toMap</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ dynamic</span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
</dd>
|
||||
<dt id="toString" class="callable inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></span><span class="signature">(<wbr>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
Returns a string representation of this object.
|
||||
<div class="features">inherited</div>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section class="summary offset-anchor inherited" id="operators">
|
||||
<h2>Operators</h2>
|
||||
<dl class="callables">
|
||||
<dt id="operator ==" class="callable inherited">
|
||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd class="inherited">
|
||||
The equality operator. <a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">[...]</a>
|
||||
<div class="features">inherited</div>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="summary offset-anchor" id="static-methods">
|
||||
<h2>Static Methods</h2>
|
||||
<dl class="callables">
|
||||
<dt id="defaultMarkerWithHue" class="callable">
|
||||
<span class="name"><a href="../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></span><span class="signature">(<wbr><span class="parameter" id="defaultMarkerWithHue-param-hue"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span> <span class="parameter-name">hue</span></span>)
|
||||
<span class="returntype parameter">→ <a href="../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
创建引用默认着色的BitmapDescriptor
|
||||
|
||||
</dd>
|
||||
<dt id="fromAssetImage" class="callable">
|
||||
<span class="name"><a href="../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></span><span class="signature">(<wbr><span class="parameter" id="fromAssetImage-param-configuration"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/painting/ImageConfiguration-class.html">ImageConfiguration</a></span> <span class="parameter-name">configuration</span>, </span><span class="parameter" id="fromAssetImage-param-assetName"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">assetName</span>, </span><span class="parameter" id="fromAssetImage-param-bundle">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/services/AssetBundle-class.html">AssetBundle</a></span> <span class="parameter-name">bundle</span>, </span><span class="parameter" id="fromAssetImage-param-package"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">package</span>, </span><span class="parameter" id="fromAssetImage-param-mipmaps"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">mipmaps</span>: <span class="default-value">true</span>}</span>)
|
||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter"><a href="../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></span>></span></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
从资源图像创建<a href="../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a>。 <a href="../amap_map/BitmapDescriptor/fromAssetImage.html">[...]</a>
|
||||
|
||||
</dd>
|
||||
<dt id="fromBytes" class="callable">
|
||||
<span class="name"><a href="../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></span><span class="signature">(<wbr><span class="parameter" id="fromBytes-param-byteData"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-typed_data/Uint8List-class.html">Uint8List</a></span> <span class="parameter-name">byteData</span></span>)
|
||||
<span class="returntype parameter">→ <a href="../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></span>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
根据将PNG图片转换后的二进制数据<code>byteData</code>创建BitmapDescriptor
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section class="summary offset-anchor" id="constants">
|
||||
<h2>Constants</h2>
|
||||
|
||||
<dl class="properties">
|
||||
<dt id="defaultMarker" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></span>
|
||||
<span class="signature">→ const <a href="../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
创建默认的marker 图标的 bitmap 描述信息对象.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>const BitmapDescriptor._(const <dynamic>['defaultMarker'])</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="hueAzure" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></span>
|
||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
天蓝色.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>210.0</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="hueBlue" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></span>
|
||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
蓝色.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>240.0</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="hueCyan" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></span>
|
||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
青色.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>180.0</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="hueGreen" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></span>
|
||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
绿色.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>120.0</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="hueMagenta" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></span>
|
||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
酒红色.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>300.0</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="hueOrange" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></span>
|
||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
橙色.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>30.0</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="hueRed" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></span>
|
||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
红色.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>0.0</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="hueRose" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></span>
|
||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
玫瑰红.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>330.0</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="hueViolet" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></span>
|
||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
紫色.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>270.0</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="hueYellow" class="constant">
|
||||
<span class="name "><a href="../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></span>
|
||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
</dt>
|
||||
<dd>
|
||||
黄色.
|
||||
|
||||
<div>
|
||||
<span class="signature"><code>60.0</code></span>
|
||||
</div>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../static-assets/highlight.pack.js"></script>
|
||||
<script src="../static-assets/URI.js"></script>
|
||||
<script src="../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,138 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the defaultMarker constant from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>defaultMarker constant - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">defaultMarker constant</li>
|
||||
</ol>
|
||||
<div class="self-name">defaultMarker</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">defaultMarker constant</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">defaultMarker</span> constant </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></span>
|
||||
const <span class="name ">defaultMarker</span>
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>创建默认的marker 图标的 bitmap 描述信息对象.</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static const BitmapDescriptor defaultMarker =
|
||||
BitmapDescriptor._(<dynamic>['defaultMarker'])
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,167 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the defaultMarkerWithHue method from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>defaultMarkerWithHue method - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">defaultMarkerWithHue method</li>
|
||||
</ol>
|
||||
<div class="self-name">defaultMarkerWithHue</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">defaultMarkerWithHue method</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">defaultMarkerWithHue</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></span>
|
||||
<span class="name ">defaultMarkerWithHue</span>
|
||||
(<wbr><ol class="parameter-list"><li><span class="parameter" id="defaultMarkerWithHue-param-hue"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span> <span class="parameter-name">hue</span></span></li>
|
||||
</ol>)
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>创建引用默认着色的BitmapDescriptor</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static BitmapDescriptor defaultMarkerWithHue(double hue) {
|
||||
assert(0.0 <= hue && hue < 360.0);
|
||||
String filename = "BLUE.png";
|
||||
if (hue == hueRed) {
|
||||
filename = "RED.png";
|
||||
} else if (hue == hueOrange) {
|
||||
filename = "ORANGE.png";
|
||||
} else if (hue == hueYellow) {
|
||||
filename = "YELLOW.png";
|
||||
} else if (hue == hueGreen) {
|
||||
filename = "GREEN.png";
|
||||
} else if (hue == hueCyan) {
|
||||
filename = "CYAN.png";
|
||||
} else if (hue == hueAzure) {
|
||||
filename = "AZURE.png";
|
||||
} else if (hue == hueBlue) {
|
||||
filename = "BLUE.png";
|
||||
} else if (hue == hueViolet) {
|
||||
filename = "VIOLET.png";
|
||||
} else if (hue == hueMagenta) {
|
||||
filename = "MAGENTA.png";
|
||||
} else if (hue == hueRose) {
|
||||
filename = "ROSE.png";
|
||||
}
|
||||
return BitmapDescriptor._(<dynamic>[
|
||||
'fromAssetImage',
|
||||
"packages/amap_map/res/$filename",
|
||||
AMapUtil.devicePixelRatio
|
||||
]);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,175 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the fromAssetImage method from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>fromAssetImage method - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">fromAssetImage method</li>
|
||||
</ol>
|
||||
<div class="self-name">fromAssetImage</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">fromAssetImage method</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">fromAssetImage</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter"><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></span>></span></span>
|
||||
<span class="name ">fromAssetImage</span>
|
||||
(<wbr><ol class="parameter-list"><li><span class="parameter" id="fromAssetImage-param-configuration"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/painting/ImageConfiguration-class.html">ImageConfiguration</a></span> <span class="parameter-name">configuration</span>, </span></li>
|
||||
<li><span class="parameter" id="fromAssetImage-param-assetName"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">assetName</span>, </span></li>
|
||||
<li><span class="parameter" id="fromAssetImage-param-bundle">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/services/AssetBundle-class.html">AssetBundle</a></span> <span class="parameter-name">bundle</span>, </span></li>
|
||||
<li><span class="parameter" id="fromAssetImage-param-package"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">package</span>, </span></li>
|
||||
<li><span class="parameter" id="fromAssetImage-param-mipmaps"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span> <span class="parameter-name">mipmaps</span>: <span class="default-value">true</span>}</span></li>
|
||||
</ol>)
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>从资源图像创建<a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a>。</p>
|
||||
<p>Flutter中的assert的资产图像按以下方式存储:
|
||||
<a href="https://flutter.dev/docs/development/ui/assets">https://flutter.dev/docs/development/ui/assets</a> and images声明-分辨率感知图像资源
|
||||
该方法考虑了各种资产解决方案
|
||||
并根据dpi将图像缩放到正确的分辨率。
|
||||
将<code>mipmaps1设置为false可加载图像的精确dpi版本,默认情况下,</code>mipmap`为true。</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static Future<BitmapDescriptor> fromAssetImage(
|
||||
ImageConfiguration configuration,
|
||||
String assetName, {
|
||||
AssetBundle bundle,
|
||||
String package,
|
||||
bool mipmaps = true,
|
||||
}) async {
|
||||
if (!mipmaps && configuration.devicePixelRatio != null) {
|
||||
return BitmapDescriptor._(<dynamic>[
|
||||
'fromAssetImage',
|
||||
assetName,
|
||||
configuration.devicePixelRatio,
|
||||
]);
|
||||
}
|
||||
final AssetImage assetImage =
|
||||
AssetImage(assetName, package: package, bundle: bundle);
|
||||
final AssetBundleImageKey assetBundleImageKey =
|
||||
await assetImage.obtainKey(configuration);
|
||||
return BitmapDescriptor._(<dynamic>[
|
||||
'fromAssetImage',
|
||||
assetBundleImageKey.name,
|
||||
assetBundleImageKey.scale,
|
||||
if (kIsWeb && configuration?.size != null)
|
||||
[
|
||||
configuration.size.width,
|
||||
configuration.size.height,
|
||||
],
|
||||
]);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,140 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the fromBytes method from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>fromBytes method - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">fromBytes method</li>
|
||||
</ol>
|
||||
<div class="self-name">fromBytes</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">fromBytes method</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-method">fromBytes</span> method </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></span>
|
||||
<span class="name ">fromBytes</span>
|
||||
(<wbr><ol class="parameter-list"><li><span class="parameter" id="fromBytes-param-byteData"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-typed_data/Uint8List-class.html">Uint8List</a></span> <span class="parameter-name">byteData</span></span></li>
|
||||
</ol>)
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>根据将PNG图片转换后的二进制数据<code>byteData</code>创建BitmapDescriptor</p>
|
||||
</section>
|
||||
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static BitmapDescriptor fromBytes(Uint8List byteData) {
|
||||
return BitmapDescriptor._(<dynamic>['fromBytes', byteData]);
|
||||
}</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,137 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the hueAzure constant from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>hueAzure constant - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueAzure constant</li>
|
||||
</ol>
|
||||
<div class="self-name">hueAzure</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueAzure constant</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">hueAzure</span> constant </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
const <span class="name ">hueAzure</span>
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>天蓝色.</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static const double hueAzure = 210.0
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,137 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the hueBlue constant from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>hueBlue constant - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueBlue constant</li>
|
||||
</ol>
|
||||
<div class="self-name">hueBlue</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueBlue constant</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">hueBlue</span> constant </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
const <span class="name ">hueBlue</span>
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>蓝色.</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static const double hueBlue = 240.0
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,137 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the hueCyan constant from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>hueCyan constant - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueCyan constant</li>
|
||||
</ol>
|
||||
<div class="self-name">hueCyan</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueCyan constant</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">hueCyan</span> constant </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
const <span class="name ">hueCyan</span>
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>青色.</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static const double hueCyan = 180.0
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,137 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the hueGreen constant from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>hueGreen constant - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueGreen constant</li>
|
||||
</ol>
|
||||
<div class="self-name">hueGreen</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueGreen constant</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">hueGreen</span> constant </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
const <span class="name ">hueGreen</span>
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>绿色.</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static const double hueGreen = 120.0
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,137 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the hueMagenta constant from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>hueMagenta constant - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueMagenta constant</li>
|
||||
</ol>
|
||||
<div class="self-name">hueMagenta</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueMagenta constant</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">hueMagenta</span> constant </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
const <span class="name ">hueMagenta</span>
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>酒红色.</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static const double hueMagenta = 300.0
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,137 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the hueOrange constant from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>hueOrange constant - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueOrange constant</li>
|
||||
</ol>
|
||||
<div class="self-name">hueOrange</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueOrange constant</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">hueOrange</span> constant </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
const <span class="name ">hueOrange</span>
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>橙色.</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static const double hueOrange = 30.0
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,137 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
||||
<meta name="description" content="API docs for the hueRed constant from the BitmapDescriptor class, for the Dart programming language.">
|
||||
<title>hueRed constant - BitmapDescriptor class - amap_map library - Dart API</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../../static-assets/github.css">
|
||||
<link rel="stylesheet" href="../../static-assets/styles.css">
|
||||
<link rel="icon" href="../../static-assets/favicon.png">
|
||||
|
||||
</head>
|
||||
|
||||
<body data-base-href="../../"
|
||||
data-using-base-href="false">
|
||||
|
||||
<div id="overlay-under-drawer"></div>
|
||||
|
||||
<header id="title">
|
||||
<button id="sidenav-left-toggle" type="button"> </button>
|
||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueRed constant</li>
|
||||
</ol>
|
||||
<div class="self-name">hueRed</div>
|
||||
<form class="search navbar-right" role="search">
|
||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||
<header id="header-search-sidebar" class="hidden-l">
|
||||
<form class="search-sidebar" role="search">
|
||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
||||
<li><a href="../../index.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor-class.html">BitmapDescriptor</a></li>
|
||||
<li class="self-crumb">hueRed constant</li>
|
||||
</ol>
|
||||
|
||||
<h5>BitmapDescriptor class</h5>
|
||||
<ol>
|
||||
|
||||
|
||||
<li class="section-title inherited">
|
||||
<a href="../../amap_map/BitmapDescriptor-class.html#instance-properties">Properties</a>
|
||||
</li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#instance-methods">Methods</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/toMap.html">toMap</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
||||
|
||||
<li class="section-title inherited"><a href="../../amap_map/BitmapDescriptor-class.html#operators">Operators</a></li>
|
||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
||||
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#static-methods">Static methods</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarkerWithHue.html">defaultMarkerWithHue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromAssetImage.html">fromAssetImage</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/fromBytes.html">fromBytes</a></li>
|
||||
|
||||
<li class="section-title"><a href="../../amap_map/BitmapDescriptor-class.html#constants">Constants</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/defaultMarker-constant.html">defaultMarker</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueAzure-constant.html">hueAzure</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueBlue-constant.html">hueBlue</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueCyan-constant.html">hueCyan</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueGreen-constant.html">hueGreen</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueMagenta-constant.html">hueMagenta</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueOrange-constant.html">hueOrange</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRed-constant.html">hueRed</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueRose-constant.html">hueRose</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueViolet-constant.html">hueViolet</a></li>
|
||||
<li><a href="../../amap_map/BitmapDescriptor/hueYellow-constant.html">hueYellow</a></li>
|
||||
|
||||
|
||||
</ol>
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||
<div><h1><span class="kind-property">hueRed</span> constant </h1></div>
|
||||
|
||||
<section class="multi-line-signature">
|
||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/double-class.html">double</a></span>
|
||||
const <span class="name ">hueRed</span>
|
||||
|
||||
</section>
|
||||
<section class="desc markdown">
|
||||
<p>红色.</p>
|
||||
</section>
|
||||
<section class="summary source-code" id="source">
|
||||
<h2><span>Implementation</span></h2>
|
||||
<pre class="language-dart"><code class="language-dart">static const double hueRed = 0.0
|
||||
|
||||
</code></pre>
|
||||
</section>
|
||||
|
||||
</div> <!-- /.main-content -->
|
||||
|
||||
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||
</div><!--/.sidebar-offcanvas-->
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<span class="no-break">
|
||||
amap_map
|
||||
1.1.0
|
||||
</span>
|
||||
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="../../static-assets/typeahead.bundle.min.js"></script>
|
||||
<script src="../../static-assets/highlight.pack.js"></script>
|
||||
<script src="../../static-assets/URI.js"></script>
|
||||
<script src="../../static-assets/script.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue