Giter VIP home page Giter VIP logo

Comments (10)

geisterfurz007 avatar geisterfurz007 commented on May 22, 2024 1

You can use the onTapListener callback on the map:

onTapListener: _onTap,

from mapbox-maps-flutter.

Shiba-Kar avatar Shiba-Kar commented on May 22, 2024 1

@geisterfurz007 @LjubiTech-Maxko thanks !!! 👍🏼

from mapbox-maps-flutter.

geisterfurz007 avatar geisterfurz007 commented on May 22, 2024 1

Again: You receive map coordinates from the callback, not screen coordinates. You do not have to convert anything. The class is called ScreenCoordinate but that is not accurate. Do yourself and others in the thread a favour and print the value you get from the callback to verify this and understand how to continue to work with them.

from mapbox-maps-flutter.

Shiba-Kar avatar Shiba-Kar commented on May 22, 2024

@geisterfurz007 its not giving the exact latitude and longitude of the tapped location in the map its returning the coordinates of the screen.

from mapbox-maps-flutter.

geisterfurz007 avatar geisterfurz007 commented on May 22, 2024

@Shiba-Kar That's what the returned class wants you to believe. If you print the values, you should see globe coordinates. If that is not the case, you can always convert between screen and map coordinates with the respective methods on MapboxMap.

from mapbox-maps-flutter.

Shiba-Kar avatar Shiba-Kar commented on May 22, 2024

@Shiba-Kar That's what the returned class wants you to believe. If you print the values, you should see globe coordinates. If that is not the case, you can always convert between screen and map coordinates with the respective methods on MapboxMap.

How to convert between screen and map coordinates with the respective methods on

from mapbox-maps-flutter.

geisterfurz007 avatar geisterfurz007 commented on May 22, 2024

MapboxMap#coordinateForPixel
MapboxMap#pixelForCoordinate

from mapbox-maps-flutter.

LjubiTech-Maxko avatar LjubiTech-Maxko commented on May 22, 2024
import 'package:mapbox_maps_flutter/mapbox_maps_flutter.dart';
import 'package:turf/turf.dart' as turf;

// Callback for MapWidget onTapListener
Future<void> onTapListener(ScreenCoordinate coord) async {
  // coord is actually map coordinates, and conv is converted value to actual screen coordinates.
  final ScreenCoordinate conv = await _mapboxMap!.pixelForCoordinate(
    turf.Point(
      coordinates: turf.Position(
        coord.y, coord.x,
      ),
    ).toJson(),
  );
}

from mapbox-maps-flutter.

Shiba-Kar avatar Shiba-Kar commented on May 22, 2024
  1. Callback for MapWidget onTapListener
 Future _addPin(ScreenCoordinate screenCoordinate) async {
    var conv = await _mapboxMap.coordinateForPixel(screenCoordinate);
    final coordinates = conv['coordinates']! as List<Object?>;
    var x = coordinates.map((e) => e as num).toList();
    var position = Position.fromJson(x);

    await _positionMarker(
        "totempole", "assets/images/user_totem.png", position);
  }
  1. Place the marker on the map
Future _positionMarker(
      String name, String assetName, Position position) async {
    final ByteData bytes = await rootBundle.load(assetName);
    var list = bytes.buffer.asUint8List();
    var x = await _mapboxMap.annotations.createPointAnnotationManager();
    var xx = await x.create(
      PointAnnotationOptions(
        image: list,
        geometry: Point(coordinates: position).toJson(),
      ),
    );
  }

Does not place the marker where the tap is registered it is positioned very off from the tap place !!.

from mapbox-maps-flutter.

Shiba-Kar avatar Shiba-Kar commented on May 22, 2024

@geisterfurz007 ScreenCoordinate confused me !!. yes it works as it should .

   {x: 43.59772105745384, y: 52.233343976845674}

from mapbox-maps-flutter.

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.