我正在尝试在 Shiny 上发布地图,但一直遇到这个问题。
让我们调用 data.frame region
。以下是列:
library(mapedit)
library(mapview)
library(shiny)
library(leaflet)
library(leaflet.extras)
region$address
region$city
region$state
region$zip
region$county
region$xcol (these are the longitude coordinates)
region$ycol (these are the latitude coordinates)
但是当我运行mapview(region)@map
它时会产生以下错误:
错误:哎呀!缺少参数 xcol 和/或 ycol!您可能期望 turf_clean 是一个空间对象。但是它属于 data.frame 类。要么将 turf_clean 转换为空间对象,要么提供 xcol 和 ycol。
我提供了 x 和 y 列,但它仍然没有产生我需要的东西。