The Parkopedia app tells you where to find a parking spot and at what rate, so that parking in the capital is no longer a source of stress and frustration.
The life of an average Parisian is full of challenges. Every day, dozens of questions plague our minds: how to avoid a crowded metro car? Who has a lighter? What are we doing tonight? While some questions often remain unanswered, there is one that has found a solution: where to park in Paris? With the app, we can find a nice little spot thanks to Parkopedia.
The app allows us to find a spot near the indicated address or our geolocated position.
Parkopedia also provides information on parking rates, including the exact addresses, payment hours, and time limits.
In English:
```javascript
function getMobileOperatingSystem() {
var userAgent = navigator.userAgent || navigator.vendor || window.opera;
if (/android/i.test(userAgent)) {return "Android";}
if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) {return "iOS";}
return "unknown";
}
if (getMobileOperatingSystem() == 'iOS'){
var appLink = "http://po.st/JSAPPSTORE"
$(".single-content").append('')
}else if (getMobileOperatingSystem() == 'Android'){
var appLink = "http://po.st/JSGPLAY"
$(".single-content").append('')
}
// ]]>
```