├── ios
├── Flutter
│ ├── Debug.xcconfig
│ ├── Release.xcconfig
│ └── AppFrameworkInfo.plist
├── Runner
│ ├── Runner-Bridging-Header.h
│ ├── Assets.xcassets
│ │ ├── LaunchImage.imageset
│ │ │ ├── LaunchImage.png
│ │ │ ├── LaunchImage@2x.png
│ │ │ ├── LaunchImage@3x.png
│ │ │ ├── README.md
│ │ │ └── Contents.json
│ │ └── AppIcon.appiconset
│ │ │ ├── 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-1024x1024@1x.png
│ │ │ ├── Icon-App-83.5x83.5@2x.png
│ │ │ └── Contents.json
│ ├── AppDelegate.swift
│ ├── Base.lproj
│ │ ├── Main.storyboard
│ │ └── LaunchScreen.storyboard
│ └── Info.plist
├── Runner.xcodeproj
│ ├── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ ├── WorkspaceSettings.xcsettings
│ │ │ └── IDEWorkspaceChecks.plist
│ ├── xcshareddata
│ │ └── xcschemes
│ │ │ └── Runner.xcscheme
│ └── project.pbxproj
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ ├── WorkspaceSettings.xcsettings
│ │ └── IDEWorkspaceChecks.plist
├── RunnerTests
│ └── RunnerTests.swift
└── .gitignore
├── android
├── gradle.properties
├── app
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── 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
│ │ │ │ ├── drawable
│ │ │ │ │ └── launch_background.xml
│ │ │ │ ├── drawable-v21
│ │ │ │ │ └── launch_background.xml
│ │ │ │ ├── values
│ │ │ │ │ └── styles.xml
│ │ │ │ └── values-night
│ │ │ │ │ └── styles.xml
│ │ │ ├── kotlin
│ │ │ │ └── com
│ │ │ │ │ └── mraslamiii
│ │ │ │ │ └── map
│ │ │ │ │ └── map_flutter
│ │ │ │ │ └── MainActivity.kt
│ │ │ └── AndroidManifest.xml
│ │ ├── debug
│ │ │ └── AndroidManifest.xml
│ │ └── profile
│ │ │ └── AndroidManifest.xml
│ └── build.gradle
├── gradle
│ └── wrapper
│ │ └── gradle-wrapper.properties
├── .gitignore
├── build.gradle
└── settings.gradle
├── .gitignore
├── test
└── widget_test.dart
├── .metadata
├── lib
├── search_model.dart
├── place_model.dart
├── line_anim.dart
├── projected_point.dart
├── main.dart
└── map_page.dart
├── assets
└── marker.svg
├── analysis_options.yaml
├── README.md
├── pubspec.yaml
└── pubspec.lock
/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
2 |
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx1536M
2 | android.useAndroidX=true
3 | android.enableJetifier=true
4 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mraslamiii/flutter-map-navigation-with-animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/com/mraslamiii/map/map_flutter/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.mraslamiii.map.map_flutter
2 |
3 | import io.flutter.embedding.android.FlutterActivity
4 |
5 | class MainActivity: FlutterActivity() {
6 | }
7 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | zipStoreBase=GRADLE_USER_HOME
4 | zipStorePath=wrapper/dists
5 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
6 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/.gitignore:
--------------------------------------------------------------------------------
1 | gradle-wrapper.jar
2 | /.gradle
3 | /captures/
4 | /gradlew
5 | /gradlew.bat
6 | /local.properties
7 | GeneratedPluginRegistrant.java
8 |
9 | # Remember to never publicly share your keystore.
10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11 | key.properties
12 | **/*.keystore
13 | **/*.jks
14 |
--------------------------------------------------------------------------------
/ios/RunnerTests/RunnerTests.swift:
--------------------------------------------------------------------------------
1 | import Flutter
2 | import UIKit
3 | import XCTest
4 |
5 | class RunnerTests: XCTestCase {
6 |
7 | func testExample() {
8 | // If you add code to the Runner application, consider adding tests here.
9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest.
10 | }
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md:
--------------------------------------------------------------------------------
1 | # Launch Screen Assets
2 |
3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory.
4 |
5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
--------------------------------------------------------------------------------
/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import Flutter
3 |
4 | @UIApplicationMain
5 | @objc class AppDelegate: FlutterAppDelegate {
6 | override func application(
7 | _ application: UIApplication,
8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
9 | ) -> Bool {
10 | GeneratedPluginRegistrant.register(with: self)
11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-v21/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchImage.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchImage@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "LaunchImage@3x.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/ios/.gitignore:
--------------------------------------------------------------------------------
1 | **/dgph
2 | *.mode1v3
3 | *.mode2v3
4 | *.moved-aside
5 | *.pbxuser
6 | *.perspectivev3
7 | **/*sync/
8 | .sconsign.dblite
9 | .tags*
10 | **/.vagrant/
11 | **/DerivedData/
12 | Icon?
13 | **/Pods/
14 | **/.symlinks/
15 | profile
16 | xcuserdata
17 | **/.generated/
18 | Flutter/App.framework
19 | Flutter/Flutter.framework
20 | Flutter/Flutter.podspec
21 | Flutter/Generated.xcconfig
22 | Flutter/ephemeral/
23 | Flutter/app.flx
24 | Flutter/app.zip
25 | Flutter/flutter_assets/
26 | Flutter/flutter_export_environment.sh
27 | ServiceDefinitions.json
28 | Runner/GeneratedPluginRegistrant.*
29 |
30 | # Exceptions to above rules.
31 | !default.mode1v3
32 | !default.mode2v3
33 | !default.pbxuser
34 | !default.perspectivev3
35 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = '1.7.10'
3 | repositories {
4 | google()
5 | mavenCentral()
6 | }
7 |
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:7.4.2'
10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 | }
12 | }
13 |
14 | allprojects {
15 | repositories {
16 | google()
17 | mavenCentral()
18 | }
19 | }
20 |
21 | rootProject.buildDir = '../build'
22 | subprojects {
23 | project.buildDir = "${rootProject.buildDir}/${project.name}"
24 | }
25 | subprojects {
26 | project.evaluationDependsOn(':app')
27 | }
28 |
29 | tasks.register("clean", Delete) {
30 | delete rootProject.buildDir
31 | }
32 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | def flutterSdkPath = {
3 | def properties = new Properties()
4 | file("local.properties").withInputStream { properties.load(it) }
5 | def flutterSdkPath = properties.getProperty("flutter.sdk")
6 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
7 | return flutterSdkPath
8 | }
9 | settings.ext.flutterSdkPath = flutterSdkPath()
10 |
11 | includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
12 |
13 | plugins {
14 | id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false
15 | }
16 | }
17 |
18 | include ":app"
19 |
20 | apply from: "${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle/app_plugin_loader.gradle"
21 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.log
4 | *.pyc
5 | *.swp
6 | .DS_Store
7 | .atom/
8 | .buildlog/
9 | .history
10 | .svn/
11 | migrate_working_dir/
12 |
13 | # IntelliJ related
14 | *.iml
15 | *.ipr
16 | *.iws
17 | .idea/
18 |
19 | # The .vscode folder contains launch configuration and tasks you configure in
20 | # VS Code which you may wish to be included in version control, so this line
21 | # is commented out by default.
22 | #.vscode/
23 |
24 | # Flutter/Dart/Pub related
25 | **/doc/api/
26 | **/ios/Flutter/.last_build_id
27 | .dart_tool/
28 | .flutter-plugins
29 | .flutter-plugins-dependencies
30 | .packages
31 | .pub-cache/
32 | .pub/
33 | /build/
34 |
35 | # Symbolication related
36 | app.*.symbols
37 |
38 | # Obfuscation related
39 | app.*.map.json
40 |
41 | # Android Studio will place build artifacts here
42 | /android/app/debug
43 | /android/app/profile
44 | /android/app/release
45 |
--------------------------------------------------------------------------------
/ios/Flutter/AppFrameworkInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | App
9 | CFBundleIdentifier
10 | io.flutter.flutter.app
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | App
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1.0
23 | MinimumOSVersion
24 | 11.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values-night/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/test/widget_test.dart:
--------------------------------------------------------------------------------
1 | // This is a basic Flutter widget test.
2 | //
3 | // To perform an interaction with a widget in your test, use the WidgetTester
4 | // utility in the flutter_test package. For example, you can send tap and scroll
5 | // gestures. You can also use WidgetTester to find child widgets in the widget
6 | // tree, read text, and verify that the values of widget properties are correct.
7 |
8 | import 'package:flutter/material.dart';
9 | import 'package:flutter_test/flutter_test.dart';
10 |
11 | import 'package:map_flutter/main.dart';
12 |
13 | void main() {
14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async {
15 | // Build our app and trigger a frame.
16 | await tester.pumpWidget(const MyApp());
17 |
18 | // Verify that our counter starts at 0.
19 | expect(find.text('0'), findsOneWidget);
20 | expect(find.text('1'), findsNothing);
21 |
22 | // Tap the '+' icon and trigger a frame.
23 | await tester.tap(find.byIcon(Icons.add));
24 | await tester.pump();
25 |
26 | // Verify that our counter has incremented.
27 | expect(find.text('0'), findsNothing);
28 | expect(find.text('1'), findsOneWidget);
29 | });
30 | }
31 |
--------------------------------------------------------------------------------
/.metadata:
--------------------------------------------------------------------------------
1 | # This file tracks properties of this Flutter project.
2 | # Used by Flutter tool to assess capabilities and perform upgrades etc.
3 | #
4 | # This file should be version controlled and should not be manually edited.
5 |
6 | version:
7 | revision: "367f9ea16bfae1ca451b9cc27c1366870b187ae2"
8 | channel: "stable"
9 |
10 | project_type: app
11 |
12 | # Tracks metadata for the flutter migrate command
13 | migration:
14 | platforms:
15 | - platform: root
16 | create_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2
17 | base_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2
18 | - platform: android
19 | create_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2
20 | base_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2
21 | - platform: ios
22 | create_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2
23 | base_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2
24 |
25 | # User provided section
26 |
27 | # List of Local paths (relative to this file) that should be
28 | # ignored by the migrate tool.
29 | #
30 | # Files that are not part of the templates will be ignored by default.
31 | unmanaged_files:
32 | - 'lib/main.dart'
33 | - 'ios/Runner.xcodeproj/project.pbxproj'
34 |
--------------------------------------------------------------------------------
/lib/search_model.dart:
--------------------------------------------------------------------------------
1 | import 'dart:convert';
2 |
3 | import 'package:flutter/material.dart';
4 | import 'package:http/http.dart' as http;
5 | import 'package:map_flutter/place_model.dart';
6 |
7 |
8 | class SearchModel extends ChangeNotifier {
9 | bool _isLoading = false;
10 |
11 | bool get isLoading => _isLoading;
12 |
13 | List _suggestions = [];
14 |
15 | List get suggestions => _suggestions;
16 |
17 | String _query = '';
18 |
19 | String get query => _query;
20 |
21 | Future onQueryChanged(String query) async {
22 | if (query == _query) {
23 | return;
24 | }
25 |
26 | _query = query;
27 | _isLoading = true;
28 | notifyListeners();
29 |
30 | if (query.isEmpty) {
31 | // _suggestions = history;
32 | } else {
33 | final http.Response response = await http.get(Uri.parse(
34 | 'https://nominatim.openstreetmap.org/search?q=$query&format=jsonv2'));
35 | final dynamic body = json.decode(utf8.decode(response.bodyBytes));
36 | try {
37 | _suggestions =
38 | List.from(body.map((model) => Place.fromJson(model)));
39 | } catch (e) {
40 | print(e);
41 | }
42 | }
43 |
44 | _isLoading = false;
45 | notifyListeners();
46 | }
47 |
48 | void clear() {
49 | // _suggestions = history;
50 | notifyListeners();
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/assets/marker.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/analysis_options.yaml:
--------------------------------------------------------------------------------
1 | # This file configures the analyzer, which statically analyzes Dart code to
2 | # check for errors, warnings, and lints.
3 | #
4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6 | # invoked from the command line by running `flutter analyze`.
7 |
8 | # The following line activates a set of recommended lints for Flutter apps,
9 | # packages, and plugins designed to encourage good coding practices.
10 | include: package:flutter_lints/flutter.yaml
11 |
12 | linter:
13 | # The lint rules applied to this project can be customized in the
14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml`
15 | # included above or to enable additional rules. A list of all available lints
16 | # and their documentation is published at https://dart.dev/lints.
17 | #
18 | # Instead of disabling a lint rule for the entire project in the
19 | # section below, it can also be suppressed for a single line of code
20 | # or a specific dart file by using the `// ignore: name_of_lint` and
21 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file
22 | # producing the lint.
23 | rules:
24 | # avoid_print: false # Uncomment to disable the `avoid_print` rule
25 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
26 |
27 | # Additional information about this file can be found at
28 | # https://dart.dev/guides/language/analysis-options
29 |
--------------------------------------------------------------------------------
/lib/place_model.dart:
--------------------------------------------------------------------------------
1 | ///this model use in search
2 | ///https://nominatim.openstreetmap.org/ui/search.html
3 |
4 | ///api for get place for a query
5 | ///https://nominatim.org/release-docs/develop/api/Search/
6 |
7 | /// you can use from this parameter for example :
8 | /*
9 | {
10 | "address": {
11 | "ISO3166-2-lvl4": "DE-BE",
12 | "borough": "Mitte",
13 | "city": "Berlin",
14 | "country": "Deutschland",
15 | "country_code": "de",
16 | "neighbourhood": "Sprengelkiez",
17 | "postcode": "13347",
18 | "road": "Lindower Straße",
19 | "shop": "Ditsch",
20 | "suburb": "Wedding"
21 | },
22 | "addresstype": "shop",
23 | "boundingbox": [
24 | "52.5427201",
25 | "52.5427654",
26 | "13.3668619",
27 | "13.3669442"
28 | ],
29 | "category": "shop",
30 | "display_name": "Ditsch, Lindower Straße, Sprengelkiez, Wedding, Mitte, Berlin, 13347, Deutschland",
31 | "importance": 9.99999999995449e-06,
32 | "lat": "52.54274275",
33 | "licence": "Data © OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright",
34 | "lon": "13.36690305710228",
35 | "name": "Ditsch",
36 | "osm_id": 437595031,
37 | "osm_type": "way",
38 | "place_id": 204751033,
39 | "place_rank": 30,
40 | "type": "bakery"
41 | }
42 | */
43 |
44 | class Place {
45 | const Place({
46 | required this.name,
47 | required this.display_name,
48 | });
49 |
50 | factory Place.fromJson(Map map) {
51 | return Place(
52 | name: map['name'] as String? ?? '',
53 | display_name: map['display_name'] as String? ?? '',
54 | );
55 | }
56 |
57 | final String name;
58 | final String display_name;
59 | }
60 |
--------------------------------------------------------------------------------
/lib/line_anim.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/animation.dart';
2 | import 'package:flutter/foundation.dart';
3 | import 'package:flutter_test/flutter_test.dart';
4 |
5 | class EasyAnimationController {
6 | static var vsync = TestVSync();
7 |
8 | AnimationController? _animationController;
9 |
10 | void start({
11 | required double initialPortion,
12 | required double finishedPortion,
13 | required Duration animationDuration,
14 | required Curve animationCurve,
15 | required Function(double) onValueChange,
16 | void Function()? onFinish,
17 | }) {
18 | _animationController?.stop();
19 | _animationController?.dispose();
20 | _animationController =
21 | AnimationController(vsync: vsync, duration: animationDuration);
22 |
23 | var tween = Tween(begin: initialPortion, end: finishedPortion);
24 |
25 |
26 |
27 | var animation =
28 | CurvedAnimation(parent: _animationController!, curve: animationCurve);
29 |
30 | _animationController?.addListener(() {
31 | onValueChange(tween.evaluate(animation));
32 | });
33 |
34 | _animationController?.addStatusListener((status) {
35 | if (status == AnimationStatus.completed ||
36 | status == AnimationStatus.dismissed) {
37 | _animationController?.dispose();
38 | _animationController = null;
39 | (onFinish ?? () {})();
40 | }
41 | });
42 | _animationController?.forward();
43 | }
44 |
45 | void stop() {
46 | _animationController?.stop();
47 | _animationController?.dispose();
48 | _animationController = null;
49 | }
50 |
51 | bool get isAnimating => _animationController != null;
52 | }
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ios/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleDisplayName
8 | Map Flutter
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | map_flutter
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | $(FLUTTER_BUILD_NAME)
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | $(FLUTTER_BUILD_NUMBER)
25 | LSRequiresIPhoneOS
26 |
27 | UILaunchStoryboardName
28 | LaunchScreen
29 | UIMainStoryboardFile
30 | Main
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 | UISupportedInterfaceOrientations~ipad
38 |
39 | UIInterfaceOrientationPortrait
40 | UIInterfaceOrientationPortraitUpsideDown
41 | UIInterfaceOrientationLandscapeLeft
42 | UIInterfaceOrientationLandscapeRight
43 |
44 | CADisableMinimumFrameDurationOnPhone
45 |
46 | UIApplicationSupportsIndirectInputEvents
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
10 |
18 |
22 |
26 |
27 |
28 |
29 |
30 |
31 |
33 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | plugins {
2 | id "com.android.application"
3 | id "kotlin-android"
4 | id "dev.flutter.flutter-gradle-plugin"
5 | }
6 |
7 | def localProperties = new Properties()
8 | def localPropertiesFile = rootProject.file('local.properties')
9 | if (localPropertiesFile.exists()) {
10 | localPropertiesFile.withReader('UTF-8') { reader ->
11 | localProperties.load(reader)
12 | }
13 | }
14 |
15 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
16 | if (flutterVersionCode == null) {
17 | flutterVersionCode = '1'
18 | }
19 |
20 | def flutterVersionName = localProperties.getProperty('flutter.versionName')
21 | if (flutterVersionName == null) {
22 | flutterVersionName = '1.0'
23 | }
24 |
25 | android {
26 | namespace "com.mraslamiii.map.map_flutter"
27 | compileSdkVersion flutter.compileSdkVersion
28 | ndkVersion flutter.ndkVersion
29 |
30 | compileOptions {
31 | sourceCompatibility JavaVersion.VERSION_1_8
32 | targetCompatibility JavaVersion.VERSION_1_8
33 | }
34 |
35 | kotlinOptions {
36 | jvmTarget = '1.8'
37 | }
38 |
39 | sourceSets {
40 | main.java.srcDirs += 'src/main/kotlin'
41 | }
42 |
43 | defaultConfig {
44 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
45 | applicationId "com.mraslamiii.map.map_flutter"
46 | // You can update the following values to match your application needs.
47 | // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
48 | minSdkVersion 21
49 | targetSdkVersion flutter.targetSdkVersion
50 | versionCode flutterVersionCode.toInteger()
51 | versionName flutterVersionName
52 | }
53 |
54 | buildTypes {
55 | release {
56 | // TODO: Add your own signing config for the release build.
57 | // Signing with the debug keys for now, so `flutter run --release` works.
58 | signingConfig signingConfigs.debug
59 | }
60 | }
61 | }
62 |
63 | flutter {
64 | source '../..'
65 | }
66 |
67 | dependencies {}
68 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ### Flutter Map Example
2 |
3 | This project is an example of how to use the Flutter Map library to display a map, add markers, and route between two points. It also uses the OpenStreetMap API to search for a location.
4 |
5 | ## To use the project
6 |
7 | * Clone the repository to your local machine.
8 |
9 | * Open the project in your favorite IDE.
10 |
11 | * Run the project on a device or emulator.
12 |
13 |
14 | ## Features :
15 |
16 | * Displays a map with markers for the user's current location and a destination.
17 |
18 | * Allows the user to route between the two points.
19 |
20 | * Uses the OpenStreetMap API to search for a location.
21 |
22 |
23 | ## How to use :
24 |
25 | * To display a map, create a MapController object and call the center() and zoom() methods to set the map's center and zoom level.
26 |
27 | * To add a marker, create a Marker object and call the add() method on the MapController object.
28 |
29 | * To route between two points, create a Polyline object and call the add() method on the MapController object.
30 |
31 | * To search for a location, use the search() method on the MapController object.
32 |
33 | ## Additional information
34 |
35 | * The Flutter Map library is a powerful tool for displaying maps in Flutter.
36 |
37 | * The OpenStreetMap API is a free and open-source map data service.
38 |
39 |
40 | ## Contributing
41 | Please feel free to contribute to this project by submitting pull requests.
42 |
43 |
44 | ## License
45 | This project is licensed under the MIT License.
46 |
47 |
48 | ## Contact
49 | If you have any questions or feedback, please contact the author at [genius8020@gmail.com]
50 |
51 |
52 | Thank you for using this project!
53 |
54 |
55 | ## Screenshots
56 | 
57 | 
58 |
59 |
60 | ## Flutter Map Documentation
61 | [https://docs.fleaflet.dev/]
62 |
63 | ## OpenStreetMap API Documentation
64 | [https://nominatim.org/release-docs/develop/api/Search/]
65 | [https://openrouteservice.org/]
66 |
67 | ## Dependencies
68 | Flutter Map
69 | OpenStreetMap API
70 |
71 |
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "20x20",
5 | "idiom" : "iphone",
6 | "filename" : "Icon-App-20x20@2x.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "20x20",
11 | "idiom" : "iphone",
12 | "filename" : "Icon-App-20x20@3x.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "Icon-App-29x29@1x.png",
19 | "scale" : "1x"
20 | },
21 | {
22 | "size" : "29x29",
23 | "idiom" : "iphone",
24 | "filename" : "Icon-App-29x29@2x.png",
25 | "scale" : "2x"
26 | },
27 | {
28 | "size" : "29x29",
29 | "idiom" : "iphone",
30 | "filename" : "Icon-App-29x29@3x.png",
31 | "scale" : "3x"
32 | },
33 | {
34 | "size" : "40x40",
35 | "idiom" : "iphone",
36 | "filename" : "Icon-App-40x40@2x.png",
37 | "scale" : "2x"
38 | },
39 | {
40 | "size" : "40x40",
41 | "idiom" : "iphone",
42 | "filename" : "Icon-App-40x40@3x.png",
43 | "scale" : "3x"
44 | },
45 | {
46 | "size" : "60x60",
47 | "idiom" : "iphone",
48 | "filename" : "Icon-App-60x60@2x.png",
49 | "scale" : "2x"
50 | },
51 | {
52 | "size" : "60x60",
53 | "idiom" : "iphone",
54 | "filename" : "Icon-App-60x60@3x.png",
55 | "scale" : "3x"
56 | },
57 | {
58 | "size" : "20x20",
59 | "idiom" : "ipad",
60 | "filename" : "Icon-App-20x20@1x.png",
61 | "scale" : "1x"
62 | },
63 | {
64 | "size" : "20x20",
65 | "idiom" : "ipad",
66 | "filename" : "Icon-App-20x20@2x.png",
67 | "scale" : "2x"
68 | },
69 | {
70 | "size" : "29x29",
71 | "idiom" : "ipad",
72 | "filename" : "Icon-App-29x29@1x.png",
73 | "scale" : "1x"
74 | },
75 | {
76 | "size" : "29x29",
77 | "idiom" : "ipad",
78 | "filename" : "Icon-App-29x29@2x.png",
79 | "scale" : "2x"
80 | },
81 | {
82 | "size" : "40x40",
83 | "idiom" : "ipad",
84 | "filename" : "Icon-App-40x40@1x.png",
85 | "scale" : "1x"
86 | },
87 | {
88 | "size" : "40x40",
89 | "idiom" : "ipad",
90 | "filename" : "Icon-App-40x40@2x.png",
91 | "scale" : "2x"
92 | },
93 | {
94 | "size" : "76x76",
95 | "idiom" : "ipad",
96 | "filename" : "Icon-App-76x76@1x.png",
97 | "scale" : "1x"
98 | },
99 | {
100 | "size" : "76x76",
101 | "idiom" : "ipad",
102 | "filename" : "Icon-App-76x76@2x.png",
103 | "scale" : "2x"
104 | },
105 | {
106 | "size" : "83.5x83.5",
107 | "idiom" : "ipad",
108 | "filename" : "Icon-App-83.5x83.5@2x.png",
109 | "scale" : "2x"
110 | },
111 | {
112 | "size" : "1024x1024",
113 | "idiom" : "ios-marketing",
114 | "filename" : "Icon-App-1024x1024@1x.png",
115 | "scale" : "1x"
116 | }
117 | ],
118 | "info" : {
119 | "version" : 1,
120 | "author" : "xcode"
121 | }
122 | }
123 |
--------------------------------------------------------------------------------
/pubspec.yaml:
--------------------------------------------------------------------------------
1 | name: map_flutter
2 | description: A new Flutter project.
3 | # The following line prevents the package from being accidentally published to
4 | # pub.dev using `flutter pub publish`. This is preferred for private packages.
5 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev
6 |
7 | # The following defines the version and build number for your application.
8 | # A version number is three numbers separated by dots, like 1.2.43
9 | # followed by an optional build number separated by a +.
10 | # Both the version and the builder number may be overridden in flutter
11 | # build by specifying --build-name and --build-number, respectively.
12 | # In Android, build-name is used as versionName while build-number used as versionCode.
13 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning
14 | # In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion.
15 | # Read more about iOS versioning at
16 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
17 | # In Windows, build-name is used as the major, minor, and patch parts
18 | # of the product and file versions while build-number is used as the build suffix.
19 | version: 1.0.0+1
20 |
21 | environment:
22 | sdk: '>=3.1.2 <4.0.0'
23 |
24 | # Dependencies specify other packages that your package needs in order to work.
25 | # To automatically upgrade your package dependencies to the latest versions
26 | # consider running `flutter pub upgrade --major-versions`. Alternatively,
27 | # dependencies can be manually updated by changing the version numbers below to
28 | # the latest version available on pub.dev. To see which dependencies have newer
29 | # versions available, run `flutter pub outdated`.
30 | dependencies:
31 | flutter:
32 | sdk: flutter
33 |
34 |
35 | # The following adds the Cupertino Icons font to your application.
36 | # Use with the CupertinoIcons class for iOS style icons.
37 | cupertino_icons: ^1.0.2
38 | flutter_map: ^6.0.1
39 | latlong2: ^0.9.0
40 | geolocator: ^10.1.0
41 | flutter_svg: ^2.0.8
42 | material_floating_search_bar_2: ^0.5.0
43 |
44 | flutter_map_geojson : ^1.0.5
45 | sn_progress_dialog: ^1.1.3
46 |
47 |
48 | http: ^1.1.0
49 |
50 |
51 |
52 | flutter_map_location_marker: any # or latest verion
53 |
54 |
55 |
56 |
57 | dev_dependencies:
58 | flutter_test:
59 | sdk: flutter
60 |
61 | # The "flutter_lints" package below contains a set of recommended lints to
62 | # encourage good coding practices. The lint set provided by the package is
63 | # activated in the `analysis_options.yaml` file located at the root of your
64 | # package. See that file for information about deactivating specific lint
65 | # rules and activating additional ones.
66 | flutter_lints: ^2.0.0
67 |
68 | # For information on the generic Dart part of this file, see the
69 | # following page: https://dart.dev/tools/pub/pubspec
70 |
71 | # The following section is specific to Flutter packages.
72 | flutter:
73 |
74 | # The following line ensures that the Material Icons font is
75 | # included with your application, so that you can use the icons in
76 | # the material Icons class.
77 | uses-material-design: true
78 |
79 | assets:
80 | - assets/
81 | # - images/a_dot_ham.jpeg
82 |
83 |
--------------------------------------------------------------------------------
/lib/projected_point.dart:
--------------------------------------------------------------------------------
1 | import 'dart:math' as Math;
2 |
3 | import 'package:flutter_map/flutter_map.dart';
4 | import 'package:latlong2/latlong.dart';
5 |
6 | class _ProjectedPoint {
7 | late CustomPoint projectedCoordinates;
8 | late num distanceFromStart;
9 | }
10 |
11 | class ProjectedPointList {
12 | List? _pointList;
13 | List<_ProjectedPoint>? _points;
14 | late num _totalProjectedLength;
15 | late Crs _crs;
16 |
17 | ProjectedPointList(List pointList, {Crs? crs}) {
18 | _pointList = pointList;
19 | _project(crs ?? Epsg3857());
20 | }
21 |
22 | num get totalProjectedLength => _totalProjectedLength;
23 |
24 | set crs(Crs crs) {
25 | if (_crs == crs) return;
26 | _project(crs);
27 | }
28 |
29 | Crs get crs => _crs;
30 |
31 | set pointList(List pointList) {
32 | _pointList = pointList;
33 | _project(_crs);
34 | }
35 |
36 | List get pointList => _pointList!;
37 |
38 | void _project(Crs crs) {
39 | var projectedPoints = _pointList
40 | ?.map((coords) => _ProjectedPoint()
41 | ..projectedCoordinates = crs.projection.project(coords)
42 | ..distanceFromStart = 0.0)
43 | .toList();
44 | var entireLength = 0.0;
45 | for (var c = 1; c < projectedPoints!.length; c++) {
46 | entireLength += _distance(projectedPoints[c - 1].projectedCoordinates,
47 | projectedPoints[c].projectedCoordinates);
48 | projectedPoints[c].distanceFromStart = entireLength;
49 | }
50 | _totalProjectedLength = entireLength;
51 | _points = projectedPoints;
52 | _crs = crs;
53 | }
54 |
55 | List? portion(double portion) {
56 | if (portion == 0) return [];
57 | if (portion == 1) return _pointList;
58 | var requestedLength = portion * _totalProjectedLength;
59 |
60 | var nextPointIndex = _points
61 | ?.indexWhere((point) => point.distanceFromStart >= requestedLength);
62 |
63 | var newArr = _pointList?.sublist(0, nextPointIndex);
64 | if (_points![nextPointIndex!].distanceFromStart > requestedLength) {
65 | var previousPoint = _points![nextPointIndex - 1];
66 | var nextPoint = _points![nextPointIndex];
67 | newArr?.add(_crs.projection.unproject(_pointBetween(
68 | previousPoint.projectedCoordinates,
69 | nextPoint.projectedCoordinates,
70 | requestedLength - previousPoint.distanceFromStart)));
71 | }
72 | return newArr;
73 | }
74 |
75 | // List projdPortion(double portion) {
76 | // var requestedLength = portion * _totalProjectedLength;
77 |
78 | // var nextPointIndex = _points
79 | // .indexWhere((point) => point.distanceFromStart >= requestedLength);
80 | // var newArr = _points
81 | // .sublist(0, nextPointIndex + 1)
82 | // .map((e) => e.projectedCoordinates)
83 | // .toList();
84 | // if (_points[nextPointIndex].distanceFromStart > requestedLength) {
85 | // var previousPoint = _points[nextPointIndex - 1];
86 | // var nextPoint = _points[nextPointIndex];
87 | // newArr.add(_pointBetween(
88 | // previousPoint.projectedCoordinates,
89 | // nextPoint.projectedCoordinates,
90 | // requestedLength - previousPoint.distanceFromStart));
91 | // }
92 | // return newArr;
93 | // }
94 | }
95 |
96 | double _distance(CustomPoint pointA, CustomPoint pointB) {
97 | return Math.sqrt(
98 | Math.pow(pointA.x - pointB.x, 2) + Math.pow(pointA.y - pointB.y, 2));
99 | }
100 |
101 | CustomPoint _pointBetween(
102 | CustomPoint pointA, CustomPoint pointB, num distanceFromPointA) {
103 | var distanceBetweenPoints = _distance(pointA, pointB);
104 | var newX = pointA.x +
105 | (distanceFromPointA / distanceBetweenPoints) * (pointB.x - pointA.x);
106 | var newY = pointA.y +
107 | (distanceFromPointA / distanceBetweenPoints) * (pointB.y - pointA.y);
108 | return CustomPoint(newX, newY);
109 | }
110 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
37 |
38 |
39 |
40 |
43 |
49 |
50 |
51 |
52 |
53 |
63 |
65 |
71 |
72 |
73 |
74 |
80 |
82 |
88 |
89 |
90 |
91 |
93 |
94 |
97 |
98 |
99 |
--------------------------------------------------------------------------------
/lib/main.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | import 'map_page.dart';
4 |
5 | void main() {
6 | runApp(const MyApp());
7 | }
8 |
9 | class MyApp extends StatelessWidget {
10 | const MyApp({super.key});
11 |
12 | // This widget is the root of your application.
13 | @override
14 | Widget build(BuildContext context) {
15 | return MaterialApp(
16 | title: 'Flutter Demo',
17 | theme: ThemeData(
18 | // This is the theme of your application.
19 | //
20 | // TRY THIS: Try running your application with "flutter run". You'll see
21 | // the application has a blue toolbar. Then, without quitting the app,
22 | // try changing the seedColor in the colorScheme below to Colors.green
23 | // and then invoke "hot reload" (save your changes or press the "hot
24 | // reload" button in a Flutter-supported IDE, or press "r" if you used
25 | // the command line to start the app).
26 | //
27 | // Notice that the counter didn't reset back to zero; the application
28 | // state is not lost during the reload. To reset the state, use hot
29 | // restart instead.
30 | //
31 | // This works for code too, not just values: Most code changes can be
32 | // tested with just a hot reload.
33 | colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
34 | useMaterial3: true,
35 | ),
36 | home: const MapPage(),
37 | );
38 | }
39 | }
40 |
41 | class MyHomePage extends StatefulWidget {
42 | const MyHomePage({super.key, required this.title});
43 |
44 | // This widget is the home page of your application. It is stateful, meaning
45 | // that it has a State object (defined below) that contains fields that affect
46 | // how it looks.
47 |
48 | // This class is the configuration for the state. It holds the values (in this
49 | // case the title) provided by the parent (in this case the App widget) and
50 | // used by the build method of the State. Fields in a Widget subclass are
51 | // always marked "final".
52 |
53 | final String title;
54 |
55 | @override
56 | State createState() => _MyHomePageState();
57 | }
58 |
59 | class _MyHomePageState extends State {
60 | int _counter = 0;
61 |
62 | void _incrementCounter() {
63 | setState(() {
64 | // This call to setState tells the Flutter framework that something has
65 | // changed in this State, which causes it to rerun the build method below
66 | // so that the display can reflect the updated values. If we changed
67 | // _counter without calling setState(), then the build method would not be
68 | // called again, and so nothing would appear to happen.
69 | _counter++;
70 | });
71 | }
72 |
73 | @override
74 | Widget build(BuildContext context) {
75 | // This method is rerun every time setState is called, for instance as done
76 | // by the _incrementCounter method above.
77 | //
78 | // The Flutter framework has been optimized to make rerunning build methods
79 | // fast, so that you can just rebuild anything that needs updating rather
80 | // than having to individually change instances of widgets.
81 | return Scaffold(
82 | appBar: AppBar(
83 | // TRY THIS: Try changing the color here to a specific color (to
84 | // Colors.amber, perhaps?) and trigger a hot reload to see the AppBar
85 | // change color while the other colors stay the same.
86 | backgroundColor: Theme.of(context).colorScheme.inversePrimary,
87 | // Here we take the value from the MyHomePage object that was created by
88 | // the App.build method, and use it to set our appbar title.
89 | title: Text(widget.title),
90 | ),
91 | body: Center(
92 | // Center is a layout widget. It takes a single child and positions it
93 | // in the middle of the parent.
94 | child: Column(
95 | // Column is also a layout widget. It takes a list of children and
96 | // arranges them vertically. By default, it sizes itself to fit its
97 | // children horizontally, and tries to be as tall as its parent.
98 | //
99 | // Column has various properties to control how it sizes itself and
100 | // how it positions its children. Here we use mainAxisAlignment to
101 | // center the children vertically; the main axis here is the vertical
102 | // axis because Columns are vertical (the cross axis would be
103 | // horizontal).
104 | //
105 | // TRY THIS: Invoke "debug painting" (choose the "Toggle Debug Paint"
106 | // action in the IDE, or press "p" in the console), to see the
107 | // wireframe for each widget.
108 | mainAxisAlignment: MainAxisAlignment.center,
109 | children: [
110 | const Text(
111 | 'You have pushed the button this many times:',
112 | ),
113 | Text(
114 | '$_counter',
115 | style: Theme.of(context).textTheme.headlineMedium,
116 | ),
117 | ],
118 | ),
119 | ),
120 | floatingActionButton: FloatingActionButton(
121 | onPressed: _incrementCounter,
122 | tooltip: 'Increment',
123 | child: const Icon(Icons.add),
124 | ), // This trailing comma makes auto-formatting nicer for build methods.
125 | );
126 | }
127 | }
128 |
--------------------------------------------------------------------------------
/lib/map_page.dart:
--------------------------------------------------------------------------------
1 | import 'dart:io';
2 | import 'dart:math';
3 |
4 | import 'package:flutter/material.dart';
5 | import 'package:flutter_map/flutter_map.dart';
6 | import 'package:flutter_map_geojson/flutter_map_geojson.dart';
7 | import 'package:flutter_map_location_marker/flutter_map_location_marker.dart';
8 | import 'package:geolocator/geolocator.dart';
9 | import 'package:latlong2/latlong.dart' as ltlng;
10 | import 'package:http/http.dart' as http;
11 | import 'package:map_flutter/projected_point.dart';
12 | import 'package:map_flutter/search_model.dart';
13 | import 'package:material_floating_search_bar_2/material_floating_search_bar_2.dart';
14 | import 'package:sn_progress_dialog/progress_dialog.dart';
15 |
16 | import 'line_anim.dart';
17 |
18 | class MapPage extends StatefulWidget {
19 | const MapPage({super.key});
20 |
21 | @override
22 | State createState() => _MapPageState();
23 | }
24 |
25 | class _MapPageState extends State {
26 | List polylines = [];
27 | GeoJsonParser myGeoJson = GeoJsonParser();
28 | ProjectedPointList? projected;
29 | late MapController mapController;
30 |
31 | EasyAnimationController? animator = EasyAnimationController();
32 |
33 | late ProgressDialog _dialog;
34 | ltlng.LatLng? endPoint;
35 | ltlng.LatLng? startPoint;
36 |
37 |
38 | ///get LocationPermission
39 | Future _determinePosition() async {
40 | bool serviceEnabled;
41 | LocationPermission permission;
42 |
43 | // Test if location services are enabled.
44 | serviceEnabled = await Geolocator.isLocationServiceEnabled();
45 | if (!serviceEnabled) {
46 | // Location services are not enabled don't continue
47 | // accessing the position and request users of the
48 | // App to enable the location services.
49 | return Future.error('Location services are disabled.');
50 | }
51 |
52 | permission = await Geolocator.checkPermission();
53 | if (permission == LocationPermission.denied) {
54 | permission = await Geolocator.requestPermission();
55 | if (permission == LocationPermission.denied) {
56 | // Permissions are denied, next time you could try
57 | // requesting permissions again (this is also where
58 | // Android's shouldShowRequestPermissionRationale
59 | // returned true. According to Android guidelines
60 | // your App should show an explanatory UI now.
61 | return Future.error('Location permissions are denied');
62 | }
63 | }
64 |
65 | if (permission == LocationPermission.deniedForever) {
66 | // Permissions are denied forever, handle appropriately.
67 | return Future.error(
68 | 'Location permissions are permanently denied, we cannot request permissions.');
69 | }
70 |
71 | // When we reach here, permissions are granted and we can
72 | // continue accessing the position of the device.
73 | return await Geolocator.getCurrentPosition();
74 | }
75 |
76 |
77 | ///close polyline
78 |
79 | closeDirections() {
80 | setState(() {
81 | polylines.clear();
82 | animator?.stop();
83 | startPoint = null;
84 | endPoint = null;
85 | projected = null;
86 | });
87 | }
88 |
89 | @override
90 | void initState() {
91 | super.initState();
92 | mapController = MapController();
93 | _determinePosition();
94 | _dialog = ProgressDialog(context: context);
95 | }
96 |
97 |
98 |
99 | ///this function use for get direction from 2 point
100 | ///https://map.project-osrm.org/
101 | ///https://openrouteservice.org/
102 |
103 | Future getRoute() async {
104 | _dialog.show(
105 | msg: 'Getting directions...',
106 | progressType: ProgressType.normal,
107 | backgroundColor: Color(0xff212121),
108 | progressValueColor: Color(0xff3550B4),
109 | progressBgColor: Colors.white70,
110 | msgColor: Colors.white,
111 | valueColor: Colors.white);
112 | var client = http.Client();
113 | try {
114 | Map qParams = {
115 | 'api_key': '5b3ce3597851110001cf62485c245aded2e14d149fb577f2e3b35e8e',
116 | 'start': '${startPoint?.longitude},${startPoint?.latitude}',
117 | 'end': '${endPoint?.longitude},${endPoint?.latitude}',
118 | };
119 |
120 | final uri = Uri.https(
121 | 'api.openrouteservice.org', '/v2/directions/driving-car', qParams);
122 | final response = await http.get(uri, headers: {
123 | HttpHeaders.contentTypeHeader: 'application/json',
124 | });
125 |
126 | myGeoJson.parseGeoJsonAsString(response.body);
127 |
128 | projected = ProjectedPointList(myGeoJson.polylines.first.points);
129 | setState(() {
130 | _dialog.close();
131 | animator?.start(
132 | initialPortion: 0.0,
133 | finishedPortion: 1.0,
134 | animationDuration: Duration(seconds: 5),
135 | animationCurve: Curves.easeInOutCubic,
136 | onValueChange: (value) {
137 | setState(() {
138 | polylines = projected!.portion(value)!;
139 | });
140 | },
141 | onFinish: () {});
142 | });
143 | } finally {
144 | client.close();
145 | }
146 | }
147 |
148 | @override
149 | Widget build(BuildContext context) {
150 | return Scaffold(
151 | body: Stack(
152 | children: [
153 | FlutterMap(
154 | mapController: mapController,
155 | options: MapOptions(
156 | onTap: (tapPosition, point) async {
157 | setState(() {
158 | if (startPoint == null) {
159 | startPoint = point;
160 | } else {
161 | endPoint = point;
162 | }
163 | });
164 |
165 | if (startPoint != null && endPoint != null) {
166 | await getRoute();
167 | }
168 | },
169 | initialCenter: ltlng.LatLng(36.310699, 59.599457),
170 | initialZoom: 16,
171 | ),
172 | children: [
173 | TileLayer(
174 | urlTemplate:
175 | 'https://api.mapbox.com/styles/v1/hamidaslami2/clob8flgd012t01qsdwnf70md/tiles/256/{z}/{x}/{y}@2x?access_token=pk.eyJ1IjoiaGFtaWRhc2xhbWkyIiwiYSI6ImNsbm9wcm5idjAyaWUya255enF0bmZyNnoifQ.eD-IuFdTBd9rDEgqyPyQEA',
176 | ),
177 | CurrentLocationLayer(
178 | followOnLocationUpdate: FollowOnLocationUpdate.once,
179 | turnOnHeadingUpdate: TurnOnHeadingUpdate.never,
180 |
181 | // indicators: LocationMarkerIndicators(),
182 |
183 | style: LocationMarkerStyle(
184 | marker: Container(
185 | decoration: BoxDecoration(boxShadow: [
186 | BoxShadow(
187 | color: Colors.grey.shade300,
188 | spreadRadius: 5,
189 | blurRadius: 5)
190 | ], color: Colors.white, shape: BoxShape.circle),
191 | child: Container(
192 | margin: const EdgeInsets.all(3),
193 | decoration: const BoxDecoration(
194 | color: Colors.blueAccent, shape: BoxShape.circle),
195 | ),
196 | ),
197 | markerSize: const Size.square(25),
198 | accuracyCircleColor: Colors.blueAccent.withOpacity(0.1),
199 | headingSectorColor: Colors.blueAccent.withOpacity(0.8),
200 | headingSectorRadius: 50,
201 | ),
202 | moveAnimationDuration: Duration.zero, // disable animation
203 | ),
204 | if (polylines.isNotEmpty)
205 | PolylineLayer(polylineCulling: true, polylines: [
206 | Polyline(
207 | colorsStop: [0.0, 1.0],
208 | strokeJoin: StrokeJoin.round,
209 | strokeWidth: 8,
210 | gradientColors: [Colors.green, Colors.green.shade700],
211 | borderColor: Colors.black87,
212 | strokeCap: StrokeCap.round,
213 | points: polylines)
214 | ]),
215 | MarkerLayer(
216 | rotate: true,
217 | markers: [
218 | Marker(
219 | point: const ltlng.LatLng(36.318079, 59.588619),
220 | width: 40,
221 | height: 40,
222 | child: marker(0),
223 | ),
224 | Marker(
225 | rotate: true,
226 | point: const ltlng.LatLng(36.317560, 59.596220),
227 | width: 40,
228 | height: 40,
229 | child: marker(1),
230 | ),
231 | Marker(
232 | rotate: true,
233 | point: const ltlng.LatLng(36.315140, 59.582950),
234 | width: 40,
235 | height: 40,
236 | child: marker(2),
237 | ),
238 | Marker(
239 | rotate: true,
240 | point: const ltlng.LatLng(36.313307, 59.584926),
241 | width: 40,
242 | height: 40,
243 | child: marker(3),
244 | ),
245 | Marker(
246 | rotate: true,
247 | point: const ltlng.LatLng(36.306529, 59.592269),
248 | width: 40,
249 | height: 40,
250 | child: marker(4),
251 | ),
252 | ],
253 | ),
254 | ],
255 | ),
256 | buildFloatingSearchBar(),
257 | if (polylines.isNotEmpty)
258 | Positioned(
259 | left: 50,
260 | right: 50,
261 | bottom: 24,
262 | child: FilledButton(
263 | child: Text('Clear line'),
264 | onPressed: () {
265 | closeDirections();
266 | },
267 | ),
268 | ),
269 | ],
270 | ),
271 | );
272 | }
273 |
274 | Widget marker(int index) {
275 | return Container(
276 | decoration: BoxDecoration(
277 | boxShadow: [
278 | BoxShadow(
279 | color: Colors.grey.shade300, spreadRadius: 5, blurRadius: 5)
280 | ],
281 | color: Colors.grey.shade200,
282 | shape: BoxShape.circle),
283 | child: Padding(
284 | padding: const EdgeInsets.all(4.0),
285 | child: CircleAvatar(backgroundImage: NetworkImage(images[index])),
286 | ),
287 | );
288 | }
289 | }
290 |
291 | Random random = Random();
292 |
293 | List images = [
294 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
295 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
296 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
297 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
298 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
299 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
300 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
301 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
302 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
303 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
304 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
305 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
306 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
307 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
308 | 'https://picsum.photos/id/${Random().nextInt(100)}/200/300',
309 | ];
310 |
311 | class buildFloatingSearchBar extends StatefulWidget {
312 | const buildFloatingSearchBar({super.key});
313 |
314 | @override
315 | State createState() => _MyHomePageState();
316 | }
317 |
318 | class _MyHomePageState extends State {
319 | final _counterModel = SearchModel();
320 |
321 | @override
322 | Widget build(BuildContext context) {
323 | return FloatingSearchBar(
324 | hint: 'Search...',
325 | scrollPadding: const EdgeInsets.only(top: 16, bottom: 56),
326 | transitionDuration: const Duration(milliseconds: 800),
327 | transitionCurve: Curves.easeInOut,
328 | physics: const BouncingScrollPhysics(),
329 |
330 | openAxisAlignment: 0.0,
331 | width: 600,
332 | debounceDelay: const Duration(milliseconds: 500),
333 | onQueryChanged: (query) async {
334 | await _counterModel.onQueryChanged(query);
335 | },
336 | // Specify a custom transition to be used for
337 | // animating between opened and closed stated.
338 | transition: CircularFloatingSearchBarTransition(),
339 | actions: [
340 | FloatingSearchBarAction(
341 | showIfOpened: false,
342 | child: CircularButton(
343 | icon: const Icon(Icons.place),
344 | onPressed: () {},
345 | ),
346 | ),
347 | FloatingSearchBarAction.searchToClear(
348 | showIfClosed: false,
349 | ),
350 | ],
351 | builder: (context, transition) {
352 | return ListenableBuilder(
353 | listenable: _counterModel,
354 | builder: (context, child) => Container(
355 | color: Colors.white,
356 | child: ClipRRect(
357 | borderRadius: BorderRadius.circular(8),
358 | child: Column(
359 | children: _counterModel.suggestions
360 | .map((e) => GestureDetector(
361 | child: ListTile(title: Text(e.display_name))))
362 | .toList()),
363 | ),
364 | ),
365 | );
366 | },
367 | );
368 | }
369 | }
370 |
--------------------------------------------------------------------------------
/pubspec.lock:
--------------------------------------------------------------------------------
1 | # Generated by pub
2 | # See https://dart.dev/tools/pub/glossary#lockfile
3 | packages:
4 | args:
5 | dependency: transitive
6 | description:
7 | name: args
8 | sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596
9 | url: "https://pub.dev"
10 | source: hosted
11 | version: "2.4.2"
12 | async:
13 | dependency: transitive
14 | description:
15 | name: async
16 | sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
17 | url: "https://pub.dev"
18 | source: hosted
19 | version: "2.11.0"
20 | boolean_selector:
21 | dependency: transitive
22 | description:
23 | name: boolean_selector
24 | sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
25 | url: "https://pub.dev"
26 | source: hosted
27 | version: "2.1.1"
28 | characters:
29 | dependency: transitive
30 | description:
31 | name: characters
32 | sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
33 | url: "https://pub.dev"
34 | source: hosted
35 | version: "1.3.0"
36 | clock:
37 | dependency: transitive
38 | description:
39 | name: clock
40 | sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
41 | url: "https://pub.dev"
42 | source: hosted
43 | version: "1.1.1"
44 | collection:
45 | dependency: transitive
46 | description:
47 | name: collection
48 | sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687
49 | url: "https://pub.dev"
50 | source: hosted
51 | version: "1.17.2"
52 | crypto:
53 | dependency: transitive
54 | description:
55 | name: crypto
56 | sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab
57 | url: "https://pub.dev"
58 | source: hosted
59 | version: "3.0.3"
60 | cupertino_icons:
61 | dependency: "direct main"
62 | description:
63 | name: cupertino_icons
64 | sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d
65 | url: "https://pub.dev"
66 | source: hosted
67 | version: "1.0.6"
68 | fake_async:
69 | dependency: transitive
70 | description:
71 | name: fake_async
72 | sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
73 | url: "https://pub.dev"
74 | source: hosted
75 | version: "1.3.1"
76 | flutter:
77 | dependency: "direct main"
78 | description: flutter
79 | source: sdk
80 | version: "0.0.0"
81 | flutter_compass:
82 | dependency: transitive
83 | description:
84 | name: flutter_compass
85 | sha256: be642484f9f6975c1c6edff568281b001f2f1e604de27ecea18d97eebbdef22f
86 | url: "https://pub.dev"
87 | source: hosted
88 | version: "0.8.0"
89 | flutter_lints:
90 | dependency: "direct dev"
91 | description:
92 | name: flutter_lints
93 | sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04
94 | url: "https://pub.dev"
95 | source: hosted
96 | version: "2.0.3"
97 | flutter_map:
98 | dependency: "direct main"
99 | description:
100 | name: flutter_map
101 | sha256: "2b925948b675ef74ca524179fb133dbe0a21741889ccf56ad08fc8dcc38ba94b"
102 | url: "https://pub.dev"
103 | source: hosted
104 | version: "6.0.1"
105 | flutter_map_geojson:
106 | dependency: "direct main"
107 | description:
108 | name: flutter_map_geojson
109 | sha256: "1e94b555e037ad8a9be90d463865dcd5f7977de59630bdd13bf496465ff93eb0"
110 | url: "https://pub.dev"
111 | source: hosted
112 | version: "1.0.6"
113 | flutter_map_location_marker:
114 | dependency: "direct main"
115 | description:
116 | name: flutter_map_location_marker
117 | sha256: "15a7947791e3a48ba47b3d7d06e87049c563e3ae2c5f5ad5fe29a456071086e6"
118 | url: "https://pub.dev"
119 | source: hosted
120 | version: "8.0.0"
121 | flutter_svg:
122 | dependency: "direct main"
123 | description:
124 | name: flutter_svg
125 | sha256: bfc7cc3c75fe1282e8ce2e056d8fd1533f1a6848b65c379b4a5e7a9b623d3371
126 | url: "https://pub.dev"
127 | source: hosted
128 | version: "2.0.8"
129 | flutter_test:
130 | dependency: "direct dev"
131 | description: flutter
132 | source: sdk
133 | version: "0.0.0"
134 | flutter_web_plugins:
135 | dependency: transitive
136 | description: flutter
137 | source: sdk
138 | version: "0.0.0"
139 | geolocator:
140 | dependency: "direct main"
141 | description:
142 | name: geolocator
143 | sha256: e946395fc608842bb2f6c914807e9183f86f3cb787f6b8f832753e5251036f02
144 | url: "https://pub.dev"
145 | source: hosted
146 | version: "10.1.0"
147 | geolocator_android:
148 | dependency: transitive
149 | description:
150 | name: geolocator_android
151 | sha256: cf85c7d61c112cd9c50b97b85d6e91b337726005a986dbba6eba73bf7ed4168f
152 | url: "https://pub.dev"
153 | source: hosted
154 | version: "4.3.3"
155 | geolocator_apple:
156 | dependency: transitive
157 | description:
158 | name: geolocator_apple
159 | sha256: ab90ae811c42ec2f6021e01eca71df00dee6ff1e69d2c2dafd4daeb0b793f73d
160 | url: "https://pub.dev"
161 | source: hosted
162 | version: "2.3.2"
163 | geolocator_platform_interface:
164 | dependency: transitive
165 | description:
166 | name: geolocator_platform_interface
167 | sha256: b7aca62aa05d7e610c396a53a1936ff87fce2f735d76e93fde9269c341c46a25
168 | url: "https://pub.dev"
169 | source: hosted
170 | version: "4.1.1"
171 | geolocator_web:
172 | dependency: transitive
173 | description:
174 | name: geolocator_web
175 | sha256: "59083f7e0871b78299918d92bf930a14377f711d2d1156c558cd5ebae6c20d58"
176 | url: "https://pub.dev"
177 | source: hosted
178 | version: "2.2.0"
179 | geolocator_windows:
180 | dependency: transitive
181 | description:
182 | name: geolocator_windows
183 | sha256: a92fae29779d5c6dc60e8411302f5221ade464968fe80a36d330e80a71f087af
184 | url: "https://pub.dev"
185 | source: hosted
186 | version: "0.2.2"
187 | http:
188 | dependency: "direct main"
189 | description:
190 | name: http
191 | sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525"
192 | url: "https://pub.dev"
193 | source: hosted
194 | version: "1.1.0"
195 | http_parser:
196 | dependency: transitive
197 | description:
198 | name: http_parser
199 | sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
200 | url: "https://pub.dev"
201 | source: hosted
202 | version: "4.0.2"
203 | intl:
204 | dependency: transitive
205 | description:
206 | name: intl
207 | sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d"
208 | url: "https://pub.dev"
209 | source: hosted
210 | version: "0.18.1"
211 | latlong2:
212 | dependency: "direct main"
213 | description:
214 | name: latlong2
215 | sha256: "18712164760cee655bc790122b0fd8f3d5b3c36da2cb7bf94b68a197fbb0811b"
216 | url: "https://pub.dev"
217 | source: hosted
218 | version: "0.9.0"
219 | lints:
220 | dependency: transitive
221 | description:
222 | name: lints
223 | sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452"
224 | url: "https://pub.dev"
225 | source: hosted
226 | version: "2.1.1"
227 | lists:
228 | dependency: transitive
229 | description:
230 | name: lists
231 | sha256: "4ca5c19ae4350de036a7e996cdd1ee39c93ac0a2b840f4915459b7d0a7d4ab27"
232 | url: "https://pub.dev"
233 | source: hosted
234 | version: "1.0.1"
235 | logger:
236 | dependency: transitive
237 | description:
238 | name: logger
239 | sha256: "6bbb9d6f7056729537a4309bda2e74e18e5d9f14302489cc1e93f33b3fe32cac"
240 | url: "https://pub.dev"
241 | source: hosted
242 | version: "2.0.2+1"
243 | matcher:
244 | dependency: transitive
245 | description:
246 | name: matcher
247 | sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e"
248 | url: "https://pub.dev"
249 | source: hosted
250 | version: "0.12.16"
251 | material_color_utilities:
252 | dependency: transitive
253 | description:
254 | name: material_color_utilities
255 | sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41"
256 | url: "https://pub.dev"
257 | source: hosted
258 | version: "0.5.0"
259 | material_floating_search_bar_2:
260 | dependency: "direct main"
261 | description:
262 | name: material_floating_search_bar_2
263 | sha256: ab0c6d209d9491f98dd4c72f2641d0ba1dd35c87effca1f23d8679bece43add0
264 | url: "https://pub.dev"
265 | source: hosted
266 | version: "0.5.0"
267 | meta:
268 | dependency: transitive
269 | description:
270 | name: meta
271 | sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
272 | url: "https://pub.dev"
273 | source: hosted
274 | version: "1.9.1"
275 | mgrs_dart:
276 | dependency: transitive
277 | description:
278 | name: mgrs_dart
279 | sha256: fb89ae62f05fa0bb90f70c31fc870bcbcfd516c843fb554452ab3396f78586f7
280 | url: "https://pub.dev"
281 | source: hosted
282 | version: "2.0.0"
283 | path:
284 | dependency: transitive
285 | description:
286 | name: path
287 | sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917"
288 | url: "https://pub.dev"
289 | source: hosted
290 | version: "1.8.3"
291 | path_parsing:
292 | dependency: transitive
293 | description:
294 | name: path_parsing
295 | sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf
296 | url: "https://pub.dev"
297 | source: hosted
298 | version: "1.0.1"
299 | petitparser:
300 | dependency: transitive
301 | description:
302 | name: petitparser
303 | sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750
304 | url: "https://pub.dev"
305 | source: hosted
306 | version: "5.4.0"
307 | plugin_platform_interface:
308 | dependency: transitive
309 | description:
310 | name: plugin_platform_interface
311 | sha256: da3fdfeccc4d4ff2da8f8c556704c08f912542c5fb3cf2233ed75372384a034d
312 | url: "https://pub.dev"
313 | source: hosted
314 | version: "2.1.6"
315 | polylabel:
316 | dependency: transitive
317 | description:
318 | name: polylabel
319 | sha256: "41b9099afb2aa6c1730bdd8a0fab1400d287694ec7615dd8516935fa3144214b"
320 | url: "https://pub.dev"
321 | source: hosted
322 | version: "1.0.1"
323 | proj4dart:
324 | dependency: transitive
325 | description:
326 | name: proj4dart
327 | sha256: c8a659ac9b6864aa47c171e78d41bbe6f5e1d7bd790a5814249e6b68bc44324e
328 | url: "https://pub.dev"
329 | source: hosted
330 | version: "2.1.0"
331 | sky_engine:
332 | dependency: transitive
333 | description: flutter
334 | source: sdk
335 | version: "0.0.99"
336 | sn_progress_dialog:
337 | dependency: "direct main"
338 | description:
339 | name: sn_progress_dialog
340 | sha256: b739d4b91c0bf575bfe1116b0a12ec2f3345d90c4ec3e7bc88b486daed6dd3e6
341 | url: "https://pub.dev"
342 | source: hosted
343 | version: "1.1.3"
344 | source_span:
345 | dependency: transitive
346 | description:
347 | name: source_span
348 | sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
349 | url: "https://pub.dev"
350 | source: hosted
351 | version: "1.10.0"
352 | sprintf:
353 | dependency: transitive
354 | description:
355 | name: sprintf
356 | sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23"
357 | url: "https://pub.dev"
358 | source: hosted
359 | version: "7.0.0"
360 | stack_trace:
361 | dependency: transitive
362 | description:
363 | name: stack_trace
364 | sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
365 | url: "https://pub.dev"
366 | source: hosted
367 | version: "1.11.0"
368 | stream_channel:
369 | dependency: transitive
370 | description:
371 | name: stream_channel
372 | sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
373 | url: "https://pub.dev"
374 | source: hosted
375 | version: "2.1.1"
376 | string_scanner:
377 | dependency: transitive
378 | description:
379 | name: string_scanner
380 | sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
381 | url: "https://pub.dev"
382 | source: hosted
383 | version: "1.2.0"
384 | term_glyph:
385 | dependency: transitive
386 | description:
387 | name: term_glyph
388 | sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
389 | url: "https://pub.dev"
390 | source: hosted
391 | version: "1.2.1"
392 | test_api:
393 | dependency: transitive
394 | description:
395 | name: test_api
396 | sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8"
397 | url: "https://pub.dev"
398 | source: hosted
399 | version: "0.6.0"
400 | typed_data:
401 | dependency: transitive
402 | description:
403 | name: typed_data
404 | sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c
405 | url: "https://pub.dev"
406 | source: hosted
407 | version: "1.3.2"
408 | unicode:
409 | dependency: transitive
410 | description:
411 | name: unicode
412 | sha256: "0f69e46593d65245774d4f17125c6084d2c20b4e473a983f6e21b7d7762218f1"
413 | url: "https://pub.dev"
414 | source: hosted
415 | version: "0.3.1"
416 | uuid:
417 | dependency: transitive
418 | description:
419 | name: uuid
420 | sha256: b715b8d3858b6fa9f68f87d20d98830283628014750c2b09b6f516c1da4af2a7
421 | url: "https://pub.dev"
422 | source: hosted
423 | version: "4.1.0"
424 | vector_graphics:
425 | dependency: transitive
426 | description:
427 | name: vector_graphics
428 | sha256: "0f0c746dd2d6254a0057218ff980fc7f5670fd0fcf5e4db38a490d31eed4ad43"
429 | url: "https://pub.dev"
430 | source: hosted
431 | version: "1.1.9+1"
432 | vector_graphics_codec:
433 | dependency: transitive
434 | description:
435 | name: vector_graphics_codec
436 | sha256: "0edf6d630d1bfd5589114138ed8fada3234deacc37966bec033d3047c29248b7"
437 | url: "https://pub.dev"
438 | source: hosted
439 | version: "1.1.9+1"
440 | vector_graphics_compiler:
441 | dependency: transitive
442 | description:
443 | name: vector_graphics_compiler
444 | sha256: d24333727332d9bd20990f1483af4e09abdb9b1fc7c3db940b56ab5c42790c26
445 | url: "https://pub.dev"
446 | source: hosted
447 | version: "1.1.9+1"
448 | vector_math:
449 | dependency: transitive
450 | description:
451 | name: vector_math
452 | sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
453 | url: "https://pub.dev"
454 | source: hosted
455 | version: "2.1.4"
456 | web:
457 | dependency: transitive
458 | description:
459 | name: web
460 | sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10
461 | url: "https://pub.dev"
462 | source: hosted
463 | version: "0.1.4-beta"
464 | wkt_parser:
465 | dependency: transitive
466 | description:
467 | name: wkt_parser
468 | sha256: "8a555fc60de3116c00aad67891bcab20f81a958e4219cc106e3c037aa3937f13"
469 | url: "https://pub.dev"
470 | source: hosted
471 | version: "2.0.0"
472 | xml:
473 | dependency: transitive
474 | description:
475 | name: xml
476 | sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84"
477 | url: "https://pub.dev"
478 | source: hosted
479 | version: "6.3.0"
480 | sdks:
481 | dart: ">=3.1.2 <4.0.0"
482 | flutter: ">=3.13.0"
483 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
12 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
13 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
14 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
15 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
16 | 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
17 | /* End PBXBuildFile section */
18 |
19 | /* Begin PBXContainerItemProxy section */
20 | 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
21 | isa = PBXContainerItemProxy;
22 | containerPortal = 97C146E61CF9000F007C117D /* Project object */;
23 | proxyType = 1;
24 | remoteGlobalIDString = 97C146ED1CF9000F007C117D;
25 | remoteInfo = Runner;
26 | };
27 | /* End PBXContainerItemProxy section */
28 |
29 | /* Begin PBXCopyFilesBuildPhase section */
30 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
31 | isa = PBXCopyFilesBuildPhase;
32 | buildActionMask = 2147483647;
33 | dstPath = "";
34 | dstSubfolderSpec = 10;
35 | files = (
36 | );
37 | name = "Embed Frameworks";
38 | runOnlyForDeploymentPostprocessing = 0;
39 | };
40 | /* End PBXCopyFilesBuildPhase section */
41 |
42 | /* Begin PBXFileReference section */
43 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
44 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
45 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
46 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
47 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
48 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
49 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
50 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
51 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
52 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
53 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
54 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
55 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
56 | 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
57 | 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
58 | /* End PBXFileReference section */
59 |
60 | /* Begin PBXFrameworksBuildPhase section */
61 | 97C146EB1CF9000F007C117D /* Frameworks */ = {
62 | isa = PBXFrameworksBuildPhase;
63 | buildActionMask = 2147483647;
64 | files = (
65 | );
66 | runOnlyForDeploymentPostprocessing = 0;
67 | };
68 | /* End PBXFrameworksBuildPhase section */
69 |
70 | /* Begin PBXGroup section */
71 | 9740EEB11CF90186004384FC /* Flutter */ = {
72 | isa = PBXGroup;
73 | children = (
74 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
75 | 9740EEB21CF90195004384FC /* Debug.xcconfig */,
76 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
77 | 9740EEB31CF90195004384FC /* Generated.xcconfig */,
78 | );
79 | name = Flutter;
80 | sourceTree = "";
81 | };
82 | 331C8082294A63A400263BE5 /* RunnerTests */ = {
83 | isa = PBXGroup;
84 | children = (
85 | 331C807B294A618700263BE5 /* RunnerTests.swift */,
86 | );
87 | path = RunnerTests;
88 | sourceTree = "";
89 | };
90 | 97C146E51CF9000F007C117D = {
91 | isa = PBXGroup;
92 | children = (
93 | 9740EEB11CF90186004384FC /* Flutter */,
94 | 97C146F01CF9000F007C117D /* Runner */,
95 | 97C146EF1CF9000F007C117D /* Products */,
96 | 331C8082294A63A400263BE5 /* RunnerTests */,
97 | );
98 | sourceTree = "";
99 | };
100 | 97C146EF1CF9000F007C117D /* Products */ = {
101 | isa = PBXGroup;
102 | children = (
103 | 97C146EE1CF9000F007C117D /* Runner.app */,
104 | 331C8081294A63A400263BE5 /* RunnerTests.xctest */,
105 | );
106 | name = Products;
107 | sourceTree = "";
108 | };
109 | 97C146F01CF9000F007C117D /* Runner */ = {
110 | isa = PBXGroup;
111 | children = (
112 | 97C146FA1CF9000F007C117D /* Main.storyboard */,
113 | 97C146FD1CF9000F007C117D /* Assets.xcassets */,
114 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
115 | 97C147021CF9000F007C117D /* Info.plist */,
116 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
117 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
118 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
119 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
120 | );
121 | path = Runner;
122 | sourceTree = "";
123 | };
124 | /* End PBXGroup section */
125 |
126 | /* Begin PBXNativeTarget section */
127 | 331C8080294A63A400263BE5 /* RunnerTests */ = {
128 | isa = PBXNativeTarget;
129 | buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
130 | buildPhases = (
131 | 331C807D294A63A400263BE5 /* Sources */,
132 | 331C807E294A63A400263BE5 /* Frameworks */,
133 | 331C807F294A63A400263BE5 /* Resources */,
134 | );
135 | buildRules = (
136 | );
137 | dependencies = (
138 | 331C8086294A63A400263BE5 /* PBXTargetDependency */,
139 | );
140 | name = RunnerTests;
141 | productName = RunnerTests;
142 | productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
143 | productType = "com.apple.product-type.bundle.unit-test";
144 | };
145 | 97C146ED1CF9000F007C117D /* Runner */ = {
146 | isa = PBXNativeTarget;
147 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
148 | buildPhases = (
149 | 9740EEB61CF901F6004384FC /* Run Script */,
150 | 97C146EA1CF9000F007C117D /* Sources */,
151 | 97C146EB1CF9000F007C117D /* Frameworks */,
152 | 97C146EC1CF9000F007C117D /* Resources */,
153 | 9705A1C41CF9048500538489 /* Embed Frameworks */,
154 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
155 | );
156 | buildRules = (
157 | );
158 | dependencies = (
159 | );
160 | name = Runner;
161 | productName = Runner;
162 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
163 | productType = "com.apple.product-type.application";
164 | };
165 | /* End PBXNativeTarget section */
166 |
167 | /* Begin PBXProject section */
168 | 97C146E61CF9000F007C117D /* Project object */ = {
169 | isa = PBXProject;
170 | attributes = {
171 | BuildIndependentTargetsInParallel = YES;
172 | LastUpgradeCheck = 1430;
173 | ORGANIZATIONNAME = "";
174 | TargetAttributes = {
175 | 331C8080294A63A400263BE5 = {
176 | CreatedOnToolsVersion = 14.0;
177 | TestTargetID = 97C146ED1CF9000F007C117D;
178 | };
179 | 97C146ED1CF9000F007C117D = {
180 | CreatedOnToolsVersion = 7.3.1;
181 | LastSwiftMigration = 1100;
182 | };
183 | };
184 | };
185 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
186 | compatibilityVersion = "Xcode 9.3";
187 | developmentRegion = en;
188 | hasScannedForEncodings = 0;
189 | knownRegions = (
190 | en,
191 | Base,
192 | );
193 | mainGroup = 97C146E51CF9000F007C117D;
194 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
195 | projectDirPath = "";
196 | projectRoot = "";
197 | targets = (
198 | 97C146ED1CF9000F007C117D /* Runner */,
199 | 331C8080294A63A400263BE5 /* RunnerTests */,
200 | );
201 | };
202 | /* End PBXProject section */
203 |
204 | /* Begin PBXResourcesBuildPhase section */
205 | 331C807F294A63A400263BE5 /* Resources */ = {
206 | isa = PBXResourcesBuildPhase;
207 | buildActionMask = 2147483647;
208 | files = (
209 | );
210 | runOnlyForDeploymentPostprocessing = 0;
211 | };
212 | 97C146EC1CF9000F007C117D /* Resources */ = {
213 | isa = PBXResourcesBuildPhase;
214 | buildActionMask = 2147483647;
215 | files = (
216 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
217 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
218 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
219 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
220 | );
221 | runOnlyForDeploymentPostprocessing = 0;
222 | };
223 | /* End PBXResourcesBuildPhase section */
224 |
225 | /* Begin PBXShellScriptBuildPhase section */
226 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
227 | isa = PBXShellScriptBuildPhase;
228 | alwaysOutOfDate = 1;
229 | buildActionMask = 2147483647;
230 | files = (
231 | );
232 | inputPaths = (
233 | "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
234 | );
235 | name = "Thin Binary";
236 | outputPaths = (
237 | );
238 | runOnlyForDeploymentPostprocessing = 0;
239 | shellPath = /bin/sh;
240 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
241 | };
242 | 9740EEB61CF901F6004384FC /* Run Script */ = {
243 | isa = PBXShellScriptBuildPhase;
244 | alwaysOutOfDate = 1;
245 | buildActionMask = 2147483647;
246 | files = (
247 | );
248 | inputPaths = (
249 | );
250 | name = "Run Script";
251 | outputPaths = (
252 | );
253 | runOnlyForDeploymentPostprocessing = 0;
254 | shellPath = /bin/sh;
255 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
256 | };
257 | /* End PBXShellScriptBuildPhase section */
258 |
259 | /* Begin PBXSourcesBuildPhase section */
260 | 331C807D294A63A400263BE5 /* Sources */ = {
261 | isa = PBXSourcesBuildPhase;
262 | buildActionMask = 2147483647;
263 | files = (
264 | 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
265 | );
266 | runOnlyForDeploymentPostprocessing = 0;
267 | };
268 | 97C146EA1CF9000F007C117D /* Sources */ = {
269 | isa = PBXSourcesBuildPhase;
270 | buildActionMask = 2147483647;
271 | files = (
272 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
273 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
274 | );
275 | runOnlyForDeploymentPostprocessing = 0;
276 | };
277 | /* End PBXSourcesBuildPhase section */
278 |
279 | /* Begin PBXTargetDependency section */
280 | 331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
281 | isa = PBXTargetDependency;
282 | target = 97C146ED1CF9000F007C117D /* Runner */;
283 | targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
284 | };
285 | /* End PBXTargetDependency section */
286 |
287 | /* Begin PBXVariantGroup section */
288 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
289 | isa = PBXVariantGroup;
290 | children = (
291 | 97C146FB1CF9000F007C117D /* Base */,
292 | );
293 | name = Main.storyboard;
294 | sourceTree = "";
295 | };
296 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
297 | isa = PBXVariantGroup;
298 | children = (
299 | 97C147001CF9000F007C117D /* Base */,
300 | );
301 | name = LaunchScreen.storyboard;
302 | sourceTree = "";
303 | };
304 | /* End PBXVariantGroup section */
305 |
306 | /* Begin XCBuildConfiguration section */
307 | 249021D3217E4FDB00AE95B9 /* Profile */ = {
308 | isa = XCBuildConfiguration;
309 | buildSettings = {
310 | ALWAYS_SEARCH_USER_PATHS = NO;
311 | CLANG_ANALYZER_NONNULL = YES;
312 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
313 | CLANG_CXX_LIBRARY = "libc++";
314 | CLANG_ENABLE_MODULES = YES;
315 | CLANG_ENABLE_OBJC_ARC = YES;
316 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
317 | CLANG_WARN_BOOL_CONVERSION = YES;
318 | CLANG_WARN_COMMA = YES;
319 | CLANG_WARN_CONSTANT_CONVERSION = YES;
320 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
321 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
322 | CLANG_WARN_EMPTY_BODY = YES;
323 | CLANG_WARN_ENUM_CONVERSION = YES;
324 | CLANG_WARN_INFINITE_RECURSION = YES;
325 | CLANG_WARN_INT_CONVERSION = YES;
326 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
327 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
328 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
329 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
330 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
331 | CLANG_WARN_STRICT_PROTOTYPES = YES;
332 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
333 | CLANG_WARN_UNREACHABLE_CODE = YES;
334 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
335 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
336 | COPY_PHASE_STRIP = NO;
337 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
338 | ENABLE_NS_ASSERTIONS = NO;
339 | ENABLE_STRICT_OBJC_MSGSEND = YES;
340 | GCC_C_LANGUAGE_STANDARD = gnu99;
341 | GCC_NO_COMMON_BLOCKS = YES;
342 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
343 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
344 | GCC_WARN_UNDECLARED_SELECTOR = YES;
345 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
346 | GCC_WARN_UNUSED_FUNCTION = YES;
347 | GCC_WARN_UNUSED_VARIABLE = YES;
348 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
349 | MTL_ENABLE_DEBUG_INFO = NO;
350 | SDKROOT = iphoneos;
351 | SUPPORTED_PLATFORMS = iphoneos;
352 | TARGETED_DEVICE_FAMILY = "1,2";
353 | VALIDATE_PRODUCT = YES;
354 | };
355 | name = Profile;
356 | };
357 | 249021D4217E4FDB00AE95B9 /* Profile */ = {
358 | isa = XCBuildConfiguration;
359 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
360 | buildSettings = {
361 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
362 | CLANG_ENABLE_MODULES = YES;
363 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
364 | ENABLE_BITCODE = NO;
365 | INFOPLIST_FILE = Runner/Info.plist;
366 | LD_RUNPATH_SEARCH_PATHS = (
367 | "$(inherited)",
368 | "@executable_path/Frameworks",
369 | );
370 | PRODUCT_BUNDLE_IDENTIFIER = com.mraslamiii.map.mapFlutter;
371 | PRODUCT_NAME = "$(TARGET_NAME)";
372 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
373 | SWIFT_VERSION = 5.0;
374 | VERSIONING_SYSTEM = "apple-generic";
375 | };
376 | name = Profile;
377 | };
378 | 331C8088294A63A400263BE5 /* Debug */ = {
379 | isa = XCBuildConfiguration;
380 | baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */;
381 | buildSettings = {
382 | BUNDLE_LOADER = "$(TEST_HOST)";
383 | CODE_SIGN_STYLE = Automatic;
384 | CURRENT_PROJECT_VERSION = 1;
385 | GENERATE_INFOPLIST_FILE = YES;
386 | MARKETING_VERSION = 1.0;
387 | PRODUCT_BUNDLE_IDENTIFIER = com.mraslamiii.map.mapFlutter.RunnerTests;
388 | PRODUCT_NAME = "$(TARGET_NAME)";
389 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
390 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
391 | SWIFT_VERSION = 5.0;
392 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
393 | };
394 | name = Debug;
395 | };
396 | 331C8089294A63A400263BE5 /* Release */ = {
397 | isa = XCBuildConfiguration;
398 | baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */;
399 | buildSettings = {
400 | BUNDLE_LOADER = "$(TEST_HOST)";
401 | CODE_SIGN_STYLE = Automatic;
402 | CURRENT_PROJECT_VERSION = 1;
403 | GENERATE_INFOPLIST_FILE = YES;
404 | MARKETING_VERSION = 1.0;
405 | PRODUCT_BUNDLE_IDENTIFIER = com.mraslamiii.map.mapFlutter.RunnerTests;
406 | PRODUCT_NAME = "$(TARGET_NAME)";
407 | SWIFT_VERSION = 5.0;
408 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
409 | };
410 | name = Release;
411 | };
412 | 331C808A294A63A400263BE5 /* Profile */ = {
413 | isa = XCBuildConfiguration;
414 | baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */;
415 | buildSettings = {
416 | BUNDLE_LOADER = "$(TEST_HOST)";
417 | CODE_SIGN_STYLE = Automatic;
418 | CURRENT_PROJECT_VERSION = 1;
419 | GENERATE_INFOPLIST_FILE = YES;
420 | MARKETING_VERSION = 1.0;
421 | PRODUCT_BUNDLE_IDENTIFIER = com.mraslamiii.map.mapFlutter.RunnerTests;
422 | PRODUCT_NAME = "$(TARGET_NAME)";
423 | SWIFT_VERSION = 5.0;
424 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
425 | };
426 | name = Profile;
427 | };
428 | 97C147031CF9000F007C117D /* Debug */ = {
429 | isa = XCBuildConfiguration;
430 | buildSettings = {
431 | ALWAYS_SEARCH_USER_PATHS = NO;
432 | CLANG_ANALYZER_NONNULL = YES;
433 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
434 | CLANG_CXX_LIBRARY = "libc++";
435 | CLANG_ENABLE_MODULES = YES;
436 | CLANG_ENABLE_OBJC_ARC = YES;
437 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
438 | CLANG_WARN_BOOL_CONVERSION = YES;
439 | CLANG_WARN_COMMA = YES;
440 | CLANG_WARN_CONSTANT_CONVERSION = YES;
441 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
442 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
443 | CLANG_WARN_EMPTY_BODY = YES;
444 | CLANG_WARN_ENUM_CONVERSION = YES;
445 | CLANG_WARN_INFINITE_RECURSION = YES;
446 | CLANG_WARN_INT_CONVERSION = YES;
447 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
448 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
449 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
450 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
451 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
452 | CLANG_WARN_STRICT_PROTOTYPES = YES;
453 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
454 | CLANG_WARN_UNREACHABLE_CODE = YES;
455 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
456 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
457 | COPY_PHASE_STRIP = NO;
458 | DEBUG_INFORMATION_FORMAT = dwarf;
459 | ENABLE_STRICT_OBJC_MSGSEND = YES;
460 | ENABLE_TESTABILITY = YES;
461 | GCC_C_LANGUAGE_STANDARD = gnu99;
462 | GCC_DYNAMIC_NO_PIC = NO;
463 | GCC_NO_COMMON_BLOCKS = YES;
464 | GCC_OPTIMIZATION_LEVEL = 0;
465 | GCC_PREPROCESSOR_DEFINITIONS = (
466 | "DEBUG=1",
467 | "$(inherited)",
468 | );
469 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
470 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
471 | GCC_WARN_UNDECLARED_SELECTOR = YES;
472 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
473 | GCC_WARN_UNUSED_FUNCTION = YES;
474 | GCC_WARN_UNUSED_VARIABLE = YES;
475 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
476 | MTL_ENABLE_DEBUG_INFO = YES;
477 | ONLY_ACTIVE_ARCH = YES;
478 | SDKROOT = iphoneos;
479 | TARGETED_DEVICE_FAMILY = "1,2";
480 | };
481 | name = Debug;
482 | };
483 | 97C147041CF9000F007C117D /* Release */ = {
484 | isa = XCBuildConfiguration;
485 | buildSettings = {
486 | ALWAYS_SEARCH_USER_PATHS = NO;
487 | CLANG_ANALYZER_NONNULL = YES;
488 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
489 | CLANG_CXX_LIBRARY = "libc++";
490 | CLANG_ENABLE_MODULES = YES;
491 | CLANG_ENABLE_OBJC_ARC = YES;
492 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
493 | CLANG_WARN_BOOL_CONVERSION = YES;
494 | CLANG_WARN_COMMA = YES;
495 | CLANG_WARN_CONSTANT_CONVERSION = YES;
496 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
497 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
498 | CLANG_WARN_EMPTY_BODY = YES;
499 | CLANG_WARN_ENUM_CONVERSION = YES;
500 | CLANG_WARN_INFINITE_RECURSION = YES;
501 | CLANG_WARN_INT_CONVERSION = YES;
502 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
503 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
504 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
505 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
506 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
507 | CLANG_WARN_STRICT_PROTOTYPES = YES;
508 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
509 | CLANG_WARN_UNREACHABLE_CODE = YES;
510 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
511 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
512 | COPY_PHASE_STRIP = NO;
513 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
514 | ENABLE_NS_ASSERTIONS = NO;
515 | ENABLE_STRICT_OBJC_MSGSEND = YES;
516 | GCC_C_LANGUAGE_STANDARD = gnu99;
517 | GCC_NO_COMMON_BLOCKS = YES;
518 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
519 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
520 | GCC_WARN_UNDECLARED_SELECTOR = YES;
521 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
522 | GCC_WARN_UNUSED_FUNCTION = YES;
523 | GCC_WARN_UNUSED_VARIABLE = YES;
524 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
525 | MTL_ENABLE_DEBUG_INFO = NO;
526 | SDKROOT = iphoneos;
527 | SUPPORTED_PLATFORMS = iphoneos;
528 | SWIFT_COMPILATION_MODE = wholemodule;
529 | SWIFT_OPTIMIZATION_LEVEL = "-O";
530 | TARGETED_DEVICE_FAMILY = "1,2";
531 | VALIDATE_PRODUCT = YES;
532 | };
533 | name = Release;
534 | };
535 | 97C147061CF9000F007C117D /* Debug */ = {
536 | isa = XCBuildConfiguration;
537 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
538 | buildSettings = {
539 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
540 | CLANG_ENABLE_MODULES = YES;
541 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
542 | ENABLE_BITCODE = NO;
543 | INFOPLIST_FILE = Runner/Info.plist;
544 | LD_RUNPATH_SEARCH_PATHS = (
545 | "$(inherited)",
546 | "@executable_path/Frameworks",
547 | );
548 | PRODUCT_BUNDLE_IDENTIFIER = com.mraslamiii.map.mapFlutter;
549 | PRODUCT_NAME = "$(TARGET_NAME)";
550 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
551 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
552 | SWIFT_VERSION = 5.0;
553 | VERSIONING_SYSTEM = "apple-generic";
554 | };
555 | name = Debug;
556 | };
557 | 97C147071CF9000F007C117D /* Release */ = {
558 | isa = XCBuildConfiguration;
559 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
560 | buildSettings = {
561 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
562 | CLANG_ENABLE_MODULES = YES;
563 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
564 | ENABLE_BITCODE = NO;
565 | INFOPLIST_FILE = Runner/Info.plist;
566 | LD_RUNPATH_SEARCH_PATHS = (
567 | "$(inherited)",
568 | "@executable_path/Frameworks",
569 | );
570 | PRODUCT_BUNDLE_IDENTIFIER = com.mraslamiii.map.mapFlutter;
571 | PRODUCT_NAME = "$(TARGET_NAME)";
572 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
573 | SWIFT_VERSION = 5.0;
574 | VERSIONING_SYSTEM = "apple-generic";
575 | };
576 | name = Release;
577 | };
578 | /* End XCBuildConfiguration section */
579 |
580 | /* Begin XCConfigurationList section */
581 | 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
582 | isa = XCConfigurationList;
583 | buildConfigurations = (
584 | 331C8088294A63A400263BE5 /* Debug */,
585 | 331C8089294A63A400263BE5 /* Release */,
586 | 331C808A294A63A400263BE5 /* Profile */,
587 | );
588 | defaultConfigurationIsVisible = 0;
589 | defaultConfigurationName = Release;
590 | };
591 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
592 | isa = XCConfigurationList;
593 | buildConfigurations = (
594 | 97C147031CF9000F007C117D /* Debug */,
595 | 97C147041CF9000F007C117D /* Release */,
596 | 249021D3217E4FDB00AE95B9 /* Profile */,
597 | );
598 | defaultConfigurationIsVisible = 0;
599 | defaultConfigurationName = Release;
600 | };
601 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
602 | isa = XCConfigurationList;
603 | buildConfigurations = (
604 | 97C147061CF9000F007C117D /* Debug */,
605 | 97C147071CF9000F007C117D /* Release */,
606 | 249021D4217E4FDB00AE95B9 /* Profile */,
607 | );
608 | defaultConfigurationIsVisible = 0;
609 | defaultConfigurationName = Release;
610 | };
611 | /* End XCConfigurationList section */
612 | };
613 | rootObject = 97C146E61CF9000F007C117D /* Project object */;
614 | }
615 |
--------------------------------------------------------------------------------