Mapbox 를 이용하여 campground 상세 페이지에서 위치가 지도에 표시되도록 했다.

👇코드 보러가기

https://github.com/Sara-Jo/BeWild/tree/e4c0bb619ab3cd70f1db36107ee9c456e70be4a2

[models/campground.js]

const CampgroundSchema = new Schema ({
    title: String,
    images: [ImageSchema],
    geometry: {
        type: {
            type: String,
            enum: ['Point'],
            required: true
        },
        coordinates: {
            type: [Number],
            required: true
        }
    },
    price: Number,
    description: String,
    location: String,
		
		...

[seeds/index.js]

...

geometry: {
                type: "Point",
                coordinates: [-113.1331, 47.0202]
            },

...

[controllers/campgrounds.js]