main.dart 1.2 KB
Newer Older
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
import 'package:clx_map_poi_search_example/AMapConfig.dart';
import 'package:flutter/material.dart';
import 'package:clx_map_poi_search/clx_map_poi_search.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);
  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();
    setupData();
  }

  setupData() async {
    ClxMapPoiSearch.instance.initPoiSearch(AMapConfig.aMapApiKeys);

26 27 28 29 30 31
    // var result = await ClxMapPoiSearch.instance.keywordsSearch("北京大学");
    // print("------ result: $result");
    //
    // var result1 = await ClxMapPoiSearch.instance.aroundSearch(31.230378, 121.473658);
    // print("------ result1: $result1");

32
    var result2 = await ClxMapPoiSearch.instance.aroundSearchAll("停车场", city: "南京",);
33
    print("------ result2: $result2");
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50

  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Running on:'),
        ),
      ),
    );
  }
}