Saltar al contenido

¿Cómo usar la biblioteca de Google Maps con Flutter Web?

Esta es la respuesta más completa que encomtrarás aportar, pero estúdiala detenidamente y analiza si es compatible a tu trabajo.

Solución:

Por favor, vea la otra respuesta. ¡Es más fácil que este!

Pude obtener una solución viable, pero no es bonita. A continuación se muestra la implementación. Si tengo algo de tiempo y un puerto legítimo no dura mucho, publicaré un repositorio de ejemplo.

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
    implements PropertyListView 
  PropertyPresenter _propertyListPresenter;
  List 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: [
        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 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
  

mapa.html




    
    
    Simple Markers
    


ingrese la descripción de la imagen aquí

¡La respuesta descrita por @panavtec a continuación también funciona y podría tener un trabajo de API más fácil!

Un repositorio de muestra de su solución está aquí:

https://github.com/dazza5000/flutter_web_google_maps_example

Si necesita usar la biblioteca, encontré esta alternativa:

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);

No lo probé a fondo, pero parece representar el mapa.

Un ejemplo de trabajo básico de esta solución está aquí:

https://github.com/dazza5000/flutter_web_google_maps_example

Creó un video tutorial del proyecto:

Artículo de blog de Barebones que recorre la solución:

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

Reseñas y calificaciones de la guía

¡Haz clic para puntuar esta entrada!
(Votos: 2 Promedio: 4)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *