Subversion Repositories eFlore/Applications.cel

Rev

Rev 3869 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3869 Rev 3881
Line 1... Line 1...
1
import {debounce} from "../lib/debounce.js";
1
import {debounce} from "../lib/debounce.js";
Line 2... Line 2...
2
 
2
 
3
export const NOMINATIM_OSM_URL = 'https://nominatim.openstreetmap.org/';
3
export const NOMINATIM_OSM_URL = 'https://nominatim.openstreetmap.org/';
4
const NOMINATIM_OSM_DEFAULT_PARAMS = {
4
const NOMINATIM_OSM_DEFAULT_PARAMS = {
5
    'format': 'json',
-
 
6
    'countrycodes': 'fr',
5
    'format': 'json',
7
    'addressdetails': 1,
6
    'addressdetails': 1,
8
    'limit': 10
7
    'limit': 10
9
};
8
};