Giter Club home page Giter Club logo

Comments (2)

johnpryan avatar johnpryan commented on May 20, 2024 1

Hi Alex,

Thanks for filing an issue. Just to clarify - you are looking for the first onPositionChanged callback to execute only when the map position has actually changed from the initial position?

As a workaround, you could try ignoring the first event if the location is the same as the starting position:

class _PropertiesMap extends StatelessWidget {
  final double width;
  final double mapZoom;
  final LatLng mapCenter;
  final Function(LatLng, double) onViewChanged;
  final Function(PropertyListItem) onPropertySelected;
  // The starting center position of the map
  final Latlng _firstMapCenter;
  // Whether or not the map has moved via `onPositionChanged`
  final bool _mapHasMoved = false;

  _PropertiesMap(
      {@required this.width,
      @required this.mapCenter,
      @required this.mapZoom,
      @required this.onViewChanged}) : _firstMapCenter = mapCenter;

  @override
  Widget build(BuildContext context) {
    print('mapCenterOnBuild:${this.mapCenter}'); //FIRST PRINT
    final mapOptions = MapOptions(
        zoom: this.mapZoom,
        onPositionChanged: (position) {
          // Ignore if this is the first event
       	  if (!_mapHasMoved && position == _firstMapCenter) {
       	    return;
       	  }
          if (position.center != null && position.zoom != null) {
            onViewChanged(position.center, position.zoom);
            _mapHasMoved = true;
          }
          print('mapCenterOnEvent:${this.mapCenter}');//SECOND PRINT
        },
        center: this.mapCenter);
    return Stack(fit: StackFit.expand, children: <Widget>[
      FlutterMap(
        options: mapOptions,
        layers: [
          TileLayerOptions(
              urlTemplate:
                  "https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}@2x.png?access_token={accessToken}",
              additionalOptions: {
                'accessToken':'<Token>',
                'id': 'mapbox.streets'
              }),
        ],
      ),
    ]);
  }

from flutter_map.

AlexandreRoba avatar AlexandreRoba commented on May 20, 2024

Excellent that was what I wanted to do 👍

from flutter_map.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.