export function setDestCoord()

in src/store/general/actions.js [42:47]


export function setDestCoord(
    { commit }, { lnglat }) {
    console.group("store/general/actions/setDestCoord");
    commit("SET_DESTCOORD", lnglat);
    console.groupEnd();
}