R leaflet:多路线

本文介绍如何利用R语言的leaflet包来创建交互式地图,并展示多条路线。通过实例代码,详细解释了如何加载地理数据,设置地图层,并添加不同路线的路径,使读者能够掌握在R中绘制复杂地理信息的方法。
摘要由CSDN通过智能技术生成
library(shiny)
library(leaflet)
library(readr)
library(dplyr)
library(tidyr)
library(splitstackshape)
library(DT)
library(maptools)

options(shiny.maxRequestSize=1024*1024^2) 

# 定义配色方案 ----
ui <- fluidPage(
  useShinyjs(),
  titlePanel("测试Demo"),
  helpText("Demo"),
  fileInput(inputId="segment_file", label="TSV文件", buttonLabel="浏览", placeholder="没有文件被选中"),
  hr(),
  helpText("输入"),
  dataTableOutput("dt"),
  leafletOutput("segment_plot", height=600)
)

# 服务端功能 ----
server <- function(input, output, session) {
  segment_trace <- reactive({
    segmentFile <- input$segment_file$datapath
    if(is.null(input$segment_file)) {
      segment_trace <- read_tsv("/geohash_block_route")  %>%
        mutate(s_lng11=gh_decode(start_geohash)$lng-gh_decode(start_geohash)$lng_error, s_lng12=gh_decode(start_geohash)$lng+gh_decode(start_geohash)$lng_error,
               s_lat11=gh_decode(start_geohash)$lat-gh_decode(start_geohash)$lat_error, s_lat12=gh_decode(start_geohash)$lat+gh_decode(start_geohash)$lat_error,
               e_lng11=gh_decode(end_geohash)$lng-gh_decode(end_geohash)$lng_error, e_lng12=gh_decode(end_geohash)$lng+gh_decode(end_geohash)$lng_error,
               e_lat11=gh_decode(end_geohash)$lat-gh_decode(end_geohash)$lat_error, e_lat12=gh_decode(end_geohash)$lat+gh_decode(end_geohash)$lat_error)
      if(ncol(str_split(colnames(segment_trace), pattern="\\.", simpl
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值