We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Mapbox
10.1.31
0.75.4
iOS, Android
@rnmapbox/maps
import Mapbox, { Camera, MapView, offlineManager, StyleURL, } from '@rnmapbox/maps'; import React, { useState } from 'react'; import { Button, Dimensions, TextInput } from 'react-native'; Mapbox.setAccessToken('my_token_here'); const OfflineExample = () => { const [packName, setPackName] = useState('pack-1'); const [showEditTitle, setShowEditTitle] = useState(false); const STYLE_URL = 'custom_style_url' const CENTER_COORD: [number, number] =[105.928, 21.0087]; return ( <> <Button title="Create Pack" onPress={() => { const options = { name: packName, styleURL: STYLE_URL, bounds: [ [105.517826, 20.90185], [105.906464, 21.204365], ], minZoom: 0, maxZoom: 17, metadata: { whatIsThat: 'foo', }, }; console.log("options", JSON.stringify(options)); offlineManager.createPack(options, (region, status) => console.log('=> progress callback region:', 'status: ', status),(region,sattus)=>{ console.log("Lỗi tải gói: " + sattus); } ); }} /> <MapView style={{ flex: 1 }} styleURL={STYLE_URL}> <Camera zoomLevel={10} centerCoordinate={CENTER_COORD} /> </MapView> </> ); }; export default OfflineExample;
When i call the offlineManager.createPack method, I receive the status:
{"completedResourceCount": 0, "completedResourceSize": 0, "erroredResourceCount": 0, "loadedResourceCount": 0, "loadedResourceSize": 0, "name": "offlinePack", "percentage": NaN, "requiredResourceCount": 0, "state": "complete"}
I wonder if rnmapbox supports creating offline packs with custom styles?
No response
The text was updated successfully, but these errors were encountered:
No code example found in issue body - More info
Sorry, something went wrong.
No branches or pull requests
Mapbox Implementation
Mapbox
Mapbox Version
10.1.31
React Native Version
0.75.4
Platform
iOS, Android
@rnmapbox/maps
version10.1.31
Standalone component to reproduce
Observed behavior and steps to reproduce
When i call the offlineManager.createPack method, I receive the status:
{"completedResourceCount": 0, "completedResourceSize": 0, "erroredResourceCount": 0, "loadedResourceCount": 0, "loadedResourceSize": 0, "name": "offlinePack", "percentage": NaN, "requiredResourceCount": 0, "state": "complete"}
I wonder if rnmapbox supports creating offline packs with custom styles?
Expected behavior
No response
Notes / preliminary analysis
No response
Additional links and references
No response
The text was updated successfully, but these errors were encountered: