Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Adding new roads to mapbox base map #3263

Closed
Sani0401 opened this issue Dec 11, 2023 · 1 comment
Closed

[Bug]: Adding new roads to mapbox base map #3263

Sani0401 opened this issue Dec 11, 2023 · 1 comment
Labels
bug 🪲 Something isn't working

Comments

@Sani0401
Copy link

Mapbox Implementation

Mapbox

Mapbox Version

10.7.0

Platform

Android

@rnmapbox/maps version

10.0.0-beta.11

Standalone component to reproduce

import React from 'react';
import {
  MapView,
  ShapeSource,
  LineLayer,
  Camera,
} from '@rnmapbox/maps';

const aLine = {
  type: 'LineString',
  coordinates: [
    [-74.00597, 40.71427],
    [-74.00697, 40.71527],
  ],
};

class BugReportExample extends React.Component {
  render() {
    return (
      <MapView style={{flex: 1}}>
        <Camera centerCoordinate={[-74.00597, 40.71427]} zoomLevel={14} />
        <ShapeSource id="idStreetLayer" shape={aLine}>
          <LineLayer id="idStreetLayer" />
        </ShapeSource>
      </MapView>
    );
  }
}

Observed behavior and steps to reproduce

Adding new roads on the OSM, to get them updated in the mapbox basemap. It didn't updated the basemap even after adding it on the OSM.

Expected behavior

As per the documentation, it was expected that after adding the new roads to OSM base map it immediately reflects the added roads in the mapbox map.
Here it didn't happed like that, what could be the options for that. What could be done to get the updated map on the base map of mapox immediately or early as possible.

Notes / preliminary analysis

No response

Additional links and references

No response

@Sani0401 Sani0401 added the bug 🪲 Something isn't working label Dec 11, 2023
@Sani0401
Copy link
Author

Need help here!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🪲 Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants