Questions tagged [mapview]
76 questions
0
votes
1 answer
MapView zoom causes the map to be obscured
I have a problem with the python mapview library: kivy_garden.mapview: if I insert the zoom in the variable map = MapView(zoom=7) the map is completely obscured by a blue color as below you can see both the image and the code.
# import & from
import…
0
votes
1 answer
How to change latitude/longitude delta mapview expo react native
WHen i open my react native expo app my mapview is on my location:
initialRegion={{
latitude: Number(userProfil.latitude),
longitude: Number(userProfil.longitude),
latitudeDelta: isBoat ? 10 :…

Arnaud P
- 117
- 5
0
votes
0 answers
Inserting mapshot image to a rmarkdown pdf document
I'm trying to put an image generetad by mapview::mapshot into a rmarkdown pdf document :
---
title: "test"
output: pdf_document
date: '2023-01-03'
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(fig.pos =…

Haribo
- 2,071
- 17
- 37
0
votes
1 answer
MapView does not show user current location
I was trying to display my current location into a Swiftui MapView. To do so, I created the following class:
import SwiftUI
import CoreLocation
import Combine
class LocationManager: NSObject, ObservableObject, CLLocationManagerDelegate…

Daniel C
- 113
- 1
- 8
0
votes
0 answers
how can ı do Value of type double if null
@IBAction func addLocation(_ sender: UIButton) {
//eklenen konumu ve verilerini kaydetme
if nameText.text == ""{
makeAlert(tıtleInput: "Error", messageInput: "İsim boş geçilemez!")
}
else if…

Bayram Yalav
- 5
- 1
0
votes
0 answers
NSURLConnection finished with error - code -1002 info.plist solutions not working
So my app has a search bar in which the user can input names of places that will be shown on the map. However, it fails to do so, and I get this message :NSURLConnection finished with error - code -1002.
I have searched for answers and also tried to…

Von Ralph Marquez
- 91
- 1
- 11
0
votes
0 answers
Kivy MapView crashes with Exception: SDL2: Unable to load image
Hi everyone,
I am trying to build a Kivy app using MapView to display, well, a map. Loading of the map and everything else works, but every time after some panning and zooming, the app crashed with the error: Exception: SDL2: Unable to load image.
I…

Bergison
- 11
- 2
0
votes
0 answers
How to create an interactive map of stars/raster object with arbitrary crs?
Problem
I would like to create interactive maps of a regular grid that comes in a CRS which is not WGS84. In my case the CRS is EPSG:25833 which has unit metres.
Given the comment here, it does not seem to be possible to "display rasters with…

chamaoskurumi
- 2,271
- 2
- 23
- 30
0
votes
0 answers
I can not render here map in react
I am try to integrate here map into our app but looks like it is getting an issue when rendering map view
This is my code
import React, { useLayoutEffect, useRef } from 'react';
import H from "@here/maps-api-for-javascript";
function MapView():…

hhpr98
- 65
- 5
0
votes
0 answers
Why are my colours not working properly in mapview?
I have an issue with a map that I have made using mapview. There is no issues I can see in the code or the data set so I don't know what's going wrong. Basically, the issue is that winter and autumn appear to be linked for no apparent reason, making…
0
votes
0 answers
Geojson error while using MapView in a react website
I'm trying to use the MapView package in my react website and I'm getting error below when I do import MapView from 'react-native-maps':
ERROR in ./node_modules/react-native-maps/lib/Geojson.js
Module build failed (from…

Goat Solutions
- 118
- 10
0
votes
1 answer
How to display Multiple markers in MapView With pincolor
I want to display on my map multiple markers for multiple latitude and longitude in MapView on React Native.
I am getting the latitude and longitude by fetch Data from API.
Now How Can I show In my React Native for All position in map using those…

ASIF AKBER
- 1
- 3
0
votes
1 answer
Mastering LiveData StateHandling Chaos
I'm using a MapView to show some markers based on current user location or a selected map position. The problem is when I navigate to another fragment using navigation component and back. Some steps below fires the livedata value twice.
The loading…

Erkan
- 140
- 2
- 11
0
votes
1 answer
Expo Cli React Native Geolocation Tracking App
I want to create a react native expo cli geolocation tracking system, i have got the location coordinates via expo location(lib).I have stored these co-ordinates into a variable(text) as a string. Now i want to display these coordinates in a map…

fahad yaseen
- 1
- 1
0
votes
1 answer
MapView in Flutter
I am working on a map application, which uses GoogleMaps, but I am having problems on the page that should display the map.
Trying to use the MapView gives me the error "Item type 'MapView' cannot be assigned to list type…

Eve
- 37
- 5