ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Interactive Document
    R/RMarkdown 2018. 7. 16. 21:46

    ---

    title: "Interact Map"

    author: "buillee"

    date: "2018년 7월 16일"

    output: html_document

    ---


    ```{r setup, include=FALSE}

    knitr::opts_chunk$set(echo = TRUE)

    ```


    ```{r include=FALSE}

    library(leaflet)

    library(dplyr)

    ```


    ```{r}

    leaflet() %>% 

      setView(lng = 127.32183600000008, lat = 36.3729804, zoom = 16) %>% 

      addTiles() %>% 

      addMarkers(lng = 127.32183600000008, lat = 36.3729804, popup = "열매마을")

    ```




    'R > RMarkdown' 카테고리의 다른 글

    문서의 렌더링 다시 보기  (0) 2019.05.31
Designed by Tistory.