Coder Social home page Coder Social logo

Comments (6)

Starcross avatar Starcross commented on June 25, 2024 1

Thanks for you help. I have it working using the scale now.

I think I got confused as I am porting over from TileView, where I was able to call defineBounds, then scrollToAndCenter without making any transformations.

from mapview.

p-lr avatar p-lr commented on June 25, 2024

Hi, it's possible that the jump is caused by using wrong coordinates for scrollTo. I need a working example to figure out what's going on. Could you fork the demo app and reproduce the issue?

from mapview.

Starcross avatar Starcross commented on June 25, 2024

I've created a fork here

There's a button on the first fragment that calls scrollToAndCenter with fixed pixel co-ordinates.

If you zoom in a bit at a time and click the button, you should see it jumps to a different place each time. It's more noticeable the more you zoom in.

from mapview.

p-lr avatar p-lr commented on June 25, 2024

That's because the scroll is affected by the scale.

from mapview.

p-lr avatar p-lr commented on June 25, 2024

8192 is the size of the map at scale 1. So 4096 corresponds to the center of the map, at scale 1.
If you want the button to center on the map, use this:

button.setOnClickListener{
      mapView.scrollToAndCenter((4096 * mapView.scale).toInt(), (4096 * mapView.scale).toInt())
}

from mapview.

p-lr avatar p-lr commented on June 25, 2024

Alternatively, a common use case is to center on a marker. That's when defineBounds is handy. For an example, have a look at MapMarkersFragment. Suppose you set bounds like this: mapView.defineBounds(0.0, 0.0, 1.0, 1.0), and you add a marker at the center:

mapView.addMarker(marker, 0.5, 0.5)

You can then center on that marker using the moveToMarker api: mapView.moveToMarker(marker, destinationScale = 0.8, shouldAnimate = true)

from mapview.

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.