Innovator is a mechanic and developed a solution (in form of liquid and gel) that make tyre safe against puncture. This liquid/gel is applied on the inner surface of any tyres of vehicles that make tyres puncture proof. Currently he is manufacturing liquid product only and selling to customers. Also he is working on manufacturing of the gel.
Key Competitive Advantage
Innovator is a mechanic and developed a solution (in form of liquid and gel) that make tyre safe against puncture. This liquid/gel is applied on the inner surface of any tyres of vehicles that make tyres puncture proof. Currently he is manufacturing liquid product only and selling to customers. Also he is working on manufacturing of the gel.
`
: '';
/*
* Location / map.
*
* We first try to find decimal
* latitude + longitude in the
* database location field.
*/
const locationValue =
practice.location ||
'';
const coordinates =
gridExtractCoordinates(
locationValue
);
let mapHTML = '';
if(coordinates){
const lat =
coordinates.lat;
const lng =
coordinates.lng;
/*
* OpenStreetMap embed.
*
* The marker is directly visible.
*/
const delta = 0.035;
const west =
lng - delta;
const east =
lng + delta;
const south =
lat - delta;
const north =
lat + delta;
const mapURL =
'https://www.openstreetmap.org/export/embed.html' +
'?bbox=' +
encodeURIComponent(west) +
',' +
encodeURIComponent(south) +
',' +
encodeURIComponent(east) +
',' +
encodeURIComponent(north) +
'&layer=mapnik' +
'&marker=' +
encodeURIComponent(lat) +
',' +
encodeURIComponent(lng);
mapHTML = `
`;
}else{
mapHTML = `
Location coordinates are not available
for this practice.