Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « geo_json « blob_viewers « components « repository « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd4d111b4b0b64a3039b0bd0b70e2ed5c1851ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import iconUrl from 'leaflet/dist/images/marker-icon.png';
import iconRetinaUrl from 'leaflet/dist/images/marker-icon-2x.png';
import shadowUrl from 'leaflet/dist/images/marker-shadow.png';
import { __ } from '~/locale';

export const RENDER_ERROR_MSG = __(
  'The map can not be displayed because there was an error loading the GeoJSON file.',
);

export const OPEN_STREET_TILE_URL = 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
export const ICON_CONFIG = { iconUrl, iconRetinaUrl, shadowUrl };
export const MAP_ATTRIBUTION = __('Map data from');
export const OPEN_STREET_COPYRIGHT_LINK =
  '<a href="https://www.openstreetmap.org/copyright" target="_blank" rel="noopener noreferrer">OpenStreetMap</a>';

export const POPUP_CONTENT_TEMPLATE = `
<div class="gl-pt-4">
  <% eachFunction(popupProperties, function(value, label) { %>
    <div>
      <strong><%- label %>:</strong> <span><%- value %></span>
    </div>
  <% }); %>
</div>
`;