map4d_map_dtqg 0.1.0 copy "map4d_map_dtqg: ^0.1.0" to clipboard
map4d_map_dtqg: ^0.1.0 copied to clipboard

A Flutter plugin for integrating Map4D DTQG in iOS and Android applications.

Map4dMap for Flutter #

platform pub package

A Flutter plugin that provides a Map4dMap DTQG widget.

Minium Android/iOS SDK version support #

Android #

Required Android SDK 21 or higher

Set minSdkVersion in android/app/build.gradle

android {
    defaultConfig {
        minSdkVersion 21
    }
}

iOS #

Required iOS 12.0 or higher

Require API key #

The API key is a unique identifier that authenticates requests associated with your project for usage and billing purposes. You must have at least one API key associated with your project.

Android #

Provide access key from android/app/src/main/AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application>
        <meta-data
            android:name="vn.map4d.map.ACCESS_KEY"
            android:value="YOUR_KEY_HERE"/>
    </application>
</manifest>

iOS #

Provide access key from ios/Runner/Info.plist

<key>Map4dMapAccessKey</key>
<string>YOUR_KEY_HERE</string>

Simple Usage #

import 'package:flutter/material.dart';
import 'package:map4d_map_dtqg/map4d_map.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Map4D DTQG Map',
      home: MFMapView(),
    );
  }
}

Documents #

0
likes
130
points
82
downloads

Documentation

API reference

Publisher

verified publishermap4d.vn

Weekly Downloads

A Flutter plugin for integrating Map4D DTQG in iOS and Android applications.

Homepage

License

Apache-2.0 (license)

Dependencies

collection, flutter, meta

More

Packages that depend on map4d_map_dtqg

Packages that implement map4d_map_dtqg