如何在 Flutter Web 中使用谷歌地图库? [关闭]

Posted

技术标签:

【中文标题】如何在 Flutter Web 中使用谷歌地图库? [关闭]【英文标题】:How to use the Google Maps library with Flutter Web? [closed] 【发布时间】:2019-12-01 00:16:41 【问题描述】:

我正在将一个 Flutter 移动项目移植到 Flutter Web,并且想知道如何将 Google 地图库与 Flutter Web 一起使用。

【问题讨论】:

我还没有测试过,但也许你可以使用pub.dev/packages/flutter_google_maps 【参考方案1】:

如果你需要使用这个库,我找到了这个替代方案:

Widget getMap() 
String htmlId = "7";

final mapOptions = new MapOptions()
  ..zoom = 8
  ..center = new LatLng(-34.397, 150.644);

// ignore: undefined_prefixed_name
ui.platformViewRegistry.registerViewFactory(htmlId, (int viewId) 
  final elem = DivElement()
    ..id = htmlId
    ..style.width = "100%"
    ..style.height = "100%"
    ..style.border = 'none';

  new GMap(elem, mapOptions);

  return elem;
);

return HtmlElementView(viewType: htmlId);

我没有彻底测试它,但它似乎可以渲染地图。

此解决方案的基本工作示例如下:

https://github.com/dazza5000/flutter_web_google_maps_example

制作了该项目的视频演练:

https://www.youtube.com/watch?v=iW7pCBL7yWk

介绍解决方案的准系统博客文章:

http://whereisdarran.com/2020/01/google-maps-for-flutter-web/

【讨论】:

如果可行,这看起来是一个很棒的解决方案 :) 谢谢! 谢谢。这行得通,我在这里提出了一个工作示例 Flutter Web 项目:github.com/dazza5000/flutter_web_google_maps_example 工作示例的链接似乎已失效,您可以发布另一个示例链接吗?我似乎在颤振网络上找不到任何谷歌地图的解决方案。 将重新发布 - 意外发布密钥 我加回来了——第一次不小心贴了api密钥【参考方案2】:

请查看其他答案。比这个简单!

我能够得到一个可行的解决方案,但它并不漂亮。下面是实现。如果我有一些时间并且合法的端口不会很长时间,我将发布一个示例 repo。

import 'dart:html';

import 'package:flutter_web/material.dart';
import 'package:lift_ai/base/screen_state.dart';
import 'package:lift_ai/feature/property_common/property_contract.dart';
import 'package:lift_ai/feature/property_common/property_presenter_impl.dart';
import 'package:lift_ai/model/car_status.dart';
import 'package:lift_ai/model/property.dart';
import 'package:flutter_web_ui/ui.dart' as ui;
import 'package:lift_ai/util/widget_util.dart';


class PropertyMapPage extends StatefulWidget 
  final CarStatus carStatus;

  PropertyMapPage(Key key, this.carStatus) : super(key: key);

  @override
  _PropertyMapPageState createState() => _PropertyMapPageState(carStatus);


class _PropertyMapPageState extends State<PropertyMapPage>
    implements PropertyListView 
  PropertyPresenter _propertyListPresenter;
  List<Property> properties = [];
  CarStatus carStatus;
  String createdViewId = 'hello-world-html';
  bool inProgress = true;

  _PropertyMapPageState(this.carStatus) 
    _propertyListPresenter = PropertyPresenterImpl(this);
  

  @override
  void initState() 
    super.initState();
    _propertyListPresenter.getProperties(carStatus, "");
  

  @override
  void dispose() 
    super.dispose();
    _propertyListPresenter = null;
  

  @override
  Widget build(BuildContext context) 
    print("Creating html view");

    if (inProgress) 
      return Center(child: CircularProgressIndicator());
    

    return Row(
      children: <Widget>[
        Container(
            width: MediaQuery.of(context).size.width - 400,
            child: HtmlView(
              viewType: createdViewId,
            )),
        Container(
          width: 400,
          child: properties.isEmpty
              ? WidgetUtil.getEmptyPropertiesView(context)
              : ListView.builder(
                  padding: EdgeInsets.all(8.0),
                  itemCount: properties.length,
                  itemBuilder: (_, index) 
                    return WidgetUtil.buildListRow(
                        context, _propertyListPresenter, properties[index]);
                  ,
                ),
        ),
      ],
    );
  

  @override
  void showProperties(List<Property> properties) 
    String markers = "";

    for (Property property in properties) 
      String marker =
          "var marker = new google.maps.Marker(position: new google.maps.LatLng($property.lat, $property.lng), map: map, title: 'Hello $property.id!');\n";
      markers += marker;
    

    String createdViewUpdate = DateTime.now().toString();

    rootBundle.loadString('map.html').then((value) 
      value = value.replaceAll(new RegExp(r'markers'), markers);

      ui.platformViewRegistry.registerViewFactory(
          createdViewId,
          (int viewId) => IFrameElement()
            ..width = (MediaQuery.of(context).size.width - 400).toString()
            ..height = MediaQuery.of(context).size.height.toString()
            ..srcdoc = value
            ..style.border = 'none');
    );

    setState(() 
      inProgress = false;
      this.createdViewId = createdViewUpdate;
      this.properties = properties;
    );
  

  @override
  void updateScreenState(ScreenState screenState)  

  @override
  void showException(String string) 
    // TODO: implement showException
  

map.html

<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
    <meta charset="utf-8">
    <title>Simple Markers</title>
    <style>
      /* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
      #map 
        height: 100%;
      
      /* Optional: Makes the sample page fill the window. */
      html, body 
        height: 100%;
        margin: 0;
        padding: 0;
      
    </style>
</head>
<body>
<div id="map"></div>
<script>

      function initMap() 
        var myLatLng = lat: 41.850033, lng: -87.6500523;

        var map = new google.maps.Map(document.getElementById('map'), 
          zoom: 4,
          center: myLatLng
        );

        markers

      
    </script>
<script async defer
        src="https://maps.googleapis.com/maps/api/js?key=API_KEY&callback=initMap">
</script>
</body>
</html>

@panavtec 下面列出的答案也适用,并且可能使用更容易的 api 工作!

他的解决方案的示例存储库在这里:

https://github.com/dazza5000/flutter_web_google_maps_example

【讨论】:

如何动态居中? 请查看其他答案以获得更简单的解决方案

以上是关于如何在 Flutter Web 中使用谷歌地图库? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

如何将热图添加到 Flutter 移动应用程序

Flutter:如何在容器上显示手机图库?

Flutter 如何将图像文件保存到图库中的新文件夹?

有啥方法可以在 Flutter for Web 中添加谷歌地图?

Flutter:捕获照片 - 保存到图库 - 从图库中读取照片

在地图上绘制路线,具有多个标记,CodeIgniter