├── .github ├── ISSUE_TEMPLATE │ ├── ---.md │ ├── bug-report.md │ └── bug.md ├── stale.yml └── workflows │ └── CI.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── proguard-rules.pro ├── settings.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── me │ └── yohom │ └── amap_location_fluttify │ ├── AmapLocationFluttifyPlugin.java │ └── sub_handler │ ├── SubHandler0.java │ ├── SubHandler1.java │ ├── SubHandler2.java │ └── custom │ └── SubHandlerCustom.java ├── assets └── amap_location_fluttify_apk.png ├── example ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── amap_location_test.jks │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── me │ │ │ │ │ └── yohom │ │ │ │ │ └── amap_location_fluttify_example │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── .last_build_id │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart └── web │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── ios ├── .gitignore ├── Assets │ └── .gitkeep ├── Classes │ ├── AmapLocationFluttifyPlugin.h │ ├── AmapLocationFluttifyPlugin.m │ └── SubHandler │ │ ├── Custom │ │ ├── SubHandlerCustom.h │ │ └── SubHandlerCustom.m │ │ ├── SubHandler0.h │ │ ├── SubHandler0.m │ │ ├── SubHandler1.h │ │ └── SubHandler1.m └── amap_location_fluttify.podspec ├── lib ├── amap_location_fluttify.dart └── src │ ├── android │ ├── android.export.g.dart │ ├── com │ │ └── amap │ │ │ └── api │ │ │ ├── fence │ │ │ ├── DistrictItem.g.dart │ │ │ ├── GeoFence.g.dart │ │ │ ├── GeoFenceClient.g.dart │ │ │ ├── GeoFenceListener.g.dart │ │ │ └── PoiItem.g.dart │ │ │ └── location │ │ │ ├── AMapLocation.g.dart │ │ │ ├── AMapLocationClient.g.dart │ │ │ ├── AMapLocationClientOption.g.dart │ │ │ ├── AMapLocationClientOption │ │ │ ├── AMapLocationMode.g.dart │ │ │ ├── AMapLocationProtocol.g.dart │ │ │ ├── AMapLocationPurpose.g.dart │ │ │ └── GeoLanguage.g.dart │ │ │ ├── AMapLocationListener.g.dart │ │ │ ├── AMapLocationQualityReport.g.dart │ │ │ ├── APSService.g.dart │ │ │ ├── CoordUtil.g.dart │ │ │ ├── CoordinateConverter.g.dart │ │ │ ├── CoordinateConverter │ │ │ └── CoordType.g.dart │ │ │ ├── DPoint.g.dart │ │ │ └── UmidtokenInfo.g.dart │ ├── constants.g.dart │ └── type_op.g.dart │ ├── facade │ ├── amap_location.dart │ ├── delegates.dart │ ├── enums.dart │ ├── extensions.dart │ ├── models.dart │ └── objects.g.dart │ └── ios │ ├── AMapGeoFenceActiveAction.g.dart │ ├── AMapGeoFenceCircleRegion.g.dart │ ├── AMapGeoFenceDistrictRegion.g.dart │ ├── AMapGeoFenceErrorCode.g.dart │ ├── AMapGeoFenceManager.g.dart │ ├── AMapGeoFenceManagerDelegate.g.dart │ ├── AMapGeoFencePOIRegion.g.dart │ ├── AMapGeoFencePolygonRegion.g.dart │ ├── AMapGeoFenceRegion.g.dart │ ├── AMapGeoFenceRegionActiveStatus.g.dart │ ├── AMapGeoFenceRegionStatus.g.dart │ ├── AMapGeoFenceRegionType.g.dart │ ├── AMapLocationCircleRegion.g.dart │ ├── AMapLocationCoordinateType.g.dart │ ├── AMapLocationDistrictItem.g.dart │ ├── AMapLocationErrorCode.g.dart │ ├── AMapLocationManager.g.dart │ ├── AMapLocationManagerDelegate.g.dart │ ├── AMapLocationPOIItem.g.dart │ ├── AMapLocationPoint.g.dart │ ├── AMapLocationPolygonRegion.g.dart │ ├── AMapLocationReGeocode.g.dart │ ├── AMapLocationReGeocodeLanguage.g.dart │ ├── AMapLocationRegion.g.dart │ ├── AMapLocationRegionState.g.dart │ ├── constants.g.dart │ ├── functions.g.dart │ ├── ios.export.g.dart │ └── type_op.g.dart ├── pubspec.lock ├── pubspec.yaml └── test └── amap_location_fluttify_test.dart /.github/ISSUE_TEMPLATE/---.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/.github/ISSUE_TEMPLATE/---.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'amap_location_fluttify' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/me/yohom/amap_location_fluttify/AmapLocationFluttifyPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/src/main/java/me/yohom/amap_location_fluttify/AmapLocationFluttifyPlugin.java -------------------------------------------------------------------------------- /android/src/main/java/me/yohom/amap_location_fluttify/sub_handler/SubHandler0.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/src/main/java/me/yohom/amap_location_fluttify/sub_handler/SubHandler0.java -------------------------------------------------------------------------------- /android/src/main/java/me/yohom/amap_location_fluttify/sub_handler/SubHandler1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/src/main/java/me/yohom/amap_location_fluttify/sub_handler/SubHandler1.java -------------------------------------------------------------------------------- /android/src/main/java/me/yohom/amap_location_fluttify/sub_handler/SubHandler2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/src/main/java/me/yohom/amap_location_fluttify/sub_handler/SubHandler2.java -------------------------------------------------------------------------------- /android/src/main/java/me/yohom/amap_location_fluttify/sub_handler/custom/SubHandlerCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/android/src/main/java/me/yohom/amap_location_fluttify/sub_handler/custom/SubHandlerCustom.java -------------------------------------------------------------------------------- /assets/amap_location_fluttify_apk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/assets/amap_location_fluttify_apk.png -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/amap_location_test.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/amap_location_test.jks -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/me/yohom/amap_location_fluttify_example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/main/java/me/yohom/amap_location_fluttify_example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/.last_build_id: -------------------------------------------------------------------------------- 1 | 6b1e15df3a85166b1cc796937be1a5f7 -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/ios/Runner/main.m -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Classes/AmapLocationFluttifyPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/ios/Classes/AmapLocationFluttifyPlugin.h -------------------------------------------------------------------------------- /ios/Classes/AmapLocationFluttifyPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/ios/Classes/AmapLocationFluttifyPlugin.m -------------------------------------------------------------------------------- /ios/Classes/SubHandler/Custom/SubHandlerCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/ios/Classes/SubHandler/Custom/SubHandlerCustom.h -------------------------------------------------------------------------------- /ios/Classes/SubHandler/Custom/SubHandlerCustom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/ios/Classes/SubHandler/Custom/SubHandlerCustom.m -------------------------------------------------------------------------------- /ios/Classes/SubHandler/SubHandler0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/ios/Classes/SubHandler/SubHandler0.h -------------------------------------------------------------------------------- /ios/Classes/SubHandler/SubHandler0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/ios/Classes/SubHandler/SubHandler0.m -------------------------------------------------------------------------------- /ios/Classes/SubHandler/SubHandler1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/ios/Classes/SubHandler/SubHandler1.h -------------------------------------------------------------------------------- /ios/Classes/SubHandler/SubHandler1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/ios/Classes/SubHandler/SubHandler1.m -------------------------------------------------------------------------------- /ios/amap_location_fluttify.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/ios/amap_location_fluttify.podspec -------------------------------------------------------------------------------- /lib/amap_location_fluttify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/amap_location_fluttify.dart -------------------------------------------------------------------------------- /lib/src/android/android.export.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/android.export.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/fence/DistrictItem.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/fence/DistrictItem.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/fence/GeoFence.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/fence/GeoFence.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/fence/GeoFenceClient.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/fence/GeoFenceClient.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/fence/GeoFenceListener.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/fence/GeoFenceListener.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/fence/PoiItem.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/fence/PoiItem.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/AMapLocation.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/AMapLocation.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/AMapLocationClient.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/AMapLocationClient.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/AMapLocationClientOption.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/AMapLocationClientOption.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/AMapLocationClientOption/AMapLocationMode.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/AMapLocationClientOption/AMapLocationMode.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/AMapLocationClientOption/AMapLocationProtocol.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/AMapLocationClientOption/AMapLocationProtocol.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/AMapLocationClientOption/AMapLocationPurpose.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/AMapLocationClientOption/AMapLocationPurpose.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/AMapLocationClientOption/GeoLanguage.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/AMapLocationClientOption/GeoLanguage.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/AMapLocationListener.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/AMapLocationListener.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/AMapLocationQualityReport.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/AMapLocationQualityReport.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/APSService.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/APSService.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/CoordUtil.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/CoordUtil.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/CoordinateConverter.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/CoordinateConverter.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/CoordinateConverter/CoordType.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/CoordinateConverter/CoordType.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/DPoint.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/DPoint.g.dart -------------------------------------------------------------------------------- /lib/src/android/com/amap/api/location/UmidtokenInfo.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/com/amap/api/location/UmidtokenInfo.g.dart -------------------------------------------------------------------------------- /lib/src/android/constants.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/constants.g.dart -------------------------------------------------------------------------------- /lib/src/android/type_op.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/android/type_op.g.dart -------------------------------------------------------------------------------- /lib/src/facade/amap_location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/facade/amap_location.dart -------------------------------------------------------------------------------- /lib/src/facade/delegates.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/facade/delegates.dart -------------------------------------------------------------------------------- /lib/src/facade/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/facade/enums.dart -------------------------------------------------------------------------------- /lib/src/facade/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/facade/extensions.dart -------------------------------------------------------------------------------- /lib/src/facade/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/facade/models.dart -------------------------------------------------------------------------------- /lib/src/facade/objects.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/facade/objects.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFenceActiveAction.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFenceActiveAction.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFenceCircleRegion.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFenceCircleRegion.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFenceDistrictRegion.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFenceDistrictRegion.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFenceErrorCode.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFenceErrorCode.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFenceManager.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFenceManager.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFenceManagerDelegate.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFenceManagerDelegate.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFencePOIRegion.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFencePOIRegion.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFencePolygonRegion.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFencePolygonRegion.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFenceRegion.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFenceRegion.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFenceRegionActiveStatus.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFenceRegionActiveStatus.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFenceRegionStatus.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFenceRegionStatus.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapGeoFenceRegionType.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapGeoFenceRegionType.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationCircleRegion.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationCircleRegion.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationCoordinateType.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationCoordinateType.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationDistrictItem.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationDistrictItem.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationErrorCode.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationErrorCode.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationManager.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationManager.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationManagerDelegate.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationManagerDelegate.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationPOIItem.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationPOIItem.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationPoint.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationPoint.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationPolygonRegion.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationPolygonRegion.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationReGeocode.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationReGeocode.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationReGeocodeLanguage.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationReGeocodeLanguage.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationRegion.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationRegion.g.dart -------------------------------------------------------------------------------- /lib/src/ios/AMapLocationRegionState.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/AMapLocationRegionState.g.dart -------------------------------------------------------------------------------- /lib/src/ios/constants.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/constants.g.dart -------------------------------------------------------------------------------- /lib/src/ios/functions.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/functions.g.dart -------------------------------------------------------------------------------- /lib/src/ios/ios.export.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/ios.export.g.dart -------------------------------------------------------------------------------- /lib/src/ios/type_op.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/lib/src/ios/type_op.g.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttify-project/amap_location_fluttify/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/amap_location_fluttify_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | --------------------------------------------------------------------------------