Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Adiciona tooltip ao marcador + linha e adiciona sugestões de pesquisa ao clicar em Encontre a Linha #128

Merged
merged 2 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2 on 2023-10-06 06:51

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('maps', '0003_auto_20231005_1327'),
]

operations = [
migrations.AddField(
model_name='maps',
name='search_placeholder',
field=models.CharField(blank=True, max_length=80, verbose_name='Placeholder do Campo de Busca'),
),
]
1 change: 1 addition & 0 deletions app/contrib/frontend/maps/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ class Maps(CMSPlugin):
)
point_a = models.FileField(upload_to="maps/icons/", blank=True, null=True)
point_b = models.FileField(upload_to="maps/icons/", blank=True, null=True)
search_placeholder = models.CharField("Placeholder do Campo de Busca", max_length=80, blank=True)
74 changes: 29 additions & 45 deletions app/contrib/frontend/maps/static/maps/js/maps.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,23 @@ L.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png", {
'&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
}).addTo(map);

// ------------------------------------------------------------

L.control.zoom({ position: "topright" }).addTo(map);

// --------------------------------------------------------------
L.Control.Search = L.Control.extend({
options: {
position: "topleft",
},
onAdd: function () {
const container = L.DomUtil.create("div", "autocomplete-container");
const searchPlaceholder = mapWrapper.dataset.mapsSearchplaceholder;

L.DomEvent.disableClickPropagation(container);

container.insertAdjacentHTML(
"beforeend",
`<div class="auto-search-wrapper loupe">
<input type="text" id="local" autocomplete="off" placeholder="Encontre a linha" />
<input type="text" id="show-all-values" autocomplete="off" placeholder="${searchPlaceholder}" />
</div>`
);

Expand All @@ -48,11 +47,10 @@ L.Control.Search = L.Control.extend({

new L.Control.Search().addTo(map);

// --------------------------------------------------------------
let startPoint, endPoint, polylineGeoJSON;
let geojsonarray = [];

function addMarkers(coordinates) {
function addMarkers(coordinates, properties) {
let LeafIcon = L.Icon.extend({
options: {
iconSize: [40, 40],
Expand All @@ -68,7 +66,7 @@ function addMarkers(coordinates) {
startPoint = L.marker([coordinates[0][1], coordinates[0][0]]);
endPoint = L.marker([coordinates[coordinates.length - 1][1], coordinates[coordinates.length - 1][0]]);

// Adiciona marcadores nos pontos inicial e final
// Adiciona marcadores custom nos pontos inicial e final
if (mapWrapper.dataset.mapsIconsPointA) {
let startIcon = new LeafIcon({iconUrl: mapWrapper.dataset.mapsIconsPointA})
startPoint = L.marker([coordinates[0][1], coordinates[0][0]], {icon: startIcon});
Expand All @@ -78,18 +76,20 @@ function addMarkers(coordinates) {
endPoint = L.marker([coordinates[coordinates.length - 1][1], coordinates[coordinates.length - 1][0]], {icon: endIcon});
}

// Adiciona marcadores ao mapa
startPoint.addTo(map);
endPoint.addTo(map);
[startPoint, endPoint].forEach(marker => {
marker.bindPopup(
`<span>Número: ${properties.ln_codigo}</span><br>` +
`<span>Nome: ${properties.title}</span><br>` +
`<span>Empresa responsável: ${properties.ln_empresa}</span><br>`
).addTo(map);
});
}

function addPolyline(coordinates, properties) {
const lineColor = mapWrapper.dataset.mapsLinecolor;

// Remove linha existente
if (polylineGeoJSON) map.removeLayer(polylineGeoJSON);

// Adiciona linha ao mapa
polylineGeoJSON = L.geoJSON({
type: "LineString",
coordinates: coordinates,
Expand All @@ -101,20 +101,20 @@ function addPolyline(coordinates, properties) {
fillOpacity: 0.5,
},
onEachFeature: function (feature, layer) {
const linhaNum = properties.ln_codigo.toString();
const linhaName = properties.title.toString();
const linhaEmpresa = properties.ln_empresa.toString();

layer.bindPopup(
"<span>Número:\n" + linhaNum + "</span><br>" +
"<span>Nome:\n" + linhaName + "</span><br>" +
"<span>Empresa responsável:\n" + linhaEmpresa + "</span><br>"
);
layer.bindPopup(
`<span>Número: ${properties.ln_codigo}</span><br>` +
`<span>Nome: ${properties.title}</span><br>` +
`<span>Empresa responsável: ${properties.ln_empresa}</span><br>`
);
},
}).addTo(map);
}

new Autocomplete("local", {
new Autocomplete("show-all-values", {
clearButton: true,
cache: true,
showAllValues: true,

onSearch: ({ currentValue }) => {
const api = mapWrapper.dataset.mapsGeojson;
return new Promise((resolve) => {
Expand All @@ -132,33 +132,18 @@ new Autocomplete("local", {
});
resolve(result);
})
.catch((error) => {
console.error(error);
});
.catch((error) => console.error(error));
});
},

onResults: ({ matches, template }) => {
return matches === 0
? template
: matches
.map((el) => {
return `
<li>
<div class="title">${el.properties.title}</div>
</li>`;
})
.join("");
},
onResults: ({ matches, template }) =>
matches === 0 ? template : matches.map((el) => `<li><div class="title">${el.properties.title}</div></li>`).join(""),

onSubmit: ({ object }) => {
const coordinates = object.geometry.coordinates;
const properties = object.properties;

// Adiciona marcadores nos pontos inicial e final
addMarkers(coordinates);

// Adiciona linha ao mapa
addMarkers(coordinates, properties);
addPolyline(coordinates, properties);

map.fitBounds(polylineGeoJSON.getBounds(), { padding: [150, 150] });
Expand All @@ -167,14 +152,13 @@ new Autocomplete("local", {
geojsonarray.push(object.properties.id);
},

noResults: ({ currentValue, template }) =>
template(`<li>Sem resultados: "${currentValue}"</li>`),
noResults: ({ currentValue, template }) => template(`<li>Sem resultados: "${currentValue}"</li>`),

onReset: () => {
// Remove marcadores e linha
if (startPoint) map.removeLayer(startPoint);
if (endPoint) map.removeLayer(endPoint);
if (polylineGeoJSON) map.removeLayer(polylineGeoJSON);
[startPoint, endPoint, polylineGeoJSON].forEach(layer => {
if (layer) map.removeLayer(layer);
});

geojsonarray = [];
},
Expand Down
1 change: 1 addition & 0 deletions app/contrib/frontend/maps/templates/maps/plugins/map.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
data-maps-geojson="{{ instance.geojson.url }}"
{% if instance.point_a %}data-maps-icons-point-A="{{ instance.point_a.url }}"{% endif %}
{% if instance.point_b %}data-maps-icons-point-B="{{ instance.point_b.url }}"{% endif %}
data-maps-searchplaceholder="{{ instance.search_placeholder }}"
data-maps-linecolor="{{ instance.line_color }}">
</div>

Expand Down
Loading