This project is not published yet.
This package is a Flutter plugin for Naver Map.
Original project is here, but it is not maintained anymore. There are a lot of bugs, typo, and deprecated code.
So I forked and fully rewrote it to support latest Flutter and Naver Map SDK and dart friendly.
You need Naver Cloud Platform account to use Naver Map API.
- Add
flutter_naver_mapto yourpubspec.yamlfile.
dependencies:
flutter_naver_map: ^1.0.0- Sign up for a Naver Cloud Platform account and create a new project.
https://auth.ncloud.com/login/

- Issue a new client ID and secret key in [AI/Naver API]
https://console.ncloud.com/naver-service/application

- You should enable
Mobile Dynamic MapAPI - Enter your package ID in
Android Package Namefield - Enter your bundle ID in
iOS Bundle IDfield
You can find your package ID in build.gradle file.
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.naver_map_plugin_example" // <- this
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
}You can find your bundle ID in Info.plist file.
<key>CFBundleIdentifier</key>
<string>com.example.naver_map_plugin_example</string> <!-- <- this -->or you can find it in XCode
- Copy
Client ID
- Add copied
Client IDtoAndroidManifest.xmlfile.
<manifest>
<application>
<meta-data
android:name="com.naver.maps.map.CLIENT_ID"
android:value="YOUR_CLIENT_ID" /> <!-- <- this -->
</application>
</manifest>- compileSdkVersion should be 33 or higher.
android {
compileSdkVersion 33
}- Insall git-lfs
If you haven't installed git-lfs, you should install it first.
If you are using Homebrew, you can install it with the following command.
brew install git-lfs
git lfs install- Add copied
Client IDtoInfo.plistfile.
<key>NMFClientId</key>
<string>YOUR_CLIENT_KEY</string>import 'package:flutter_naver_map/flutter_naver_map.dart';import 'package:flutter/material.dart';
import 'package:flutter_naver_map/flutter_naver_map.dart';
class BasicExmaple extends StatelessWidget {
const BasicExmaple({super.key});
@override
Widget build(BuildContext context) {
final mapController = NaverMapController();
return NaverMap(
controller: mapController,
options: const NaverMapOptions(
initialCameraPosition: CameraPosition(
target: LatLng(37.52504866440145, 127.03169168035946),
zoom: 14,
),
layers: [
MapLayer.building,
MapLayer.traffic,
],
),
);
}
}- Tracking bearing isn't working properly.


