Hello,
I want to know if there is any way to request GPS permission using capacitor without having to install cordova plugins ?

This is the kind of dialogue I want to trigger to enable GPS
You can use Geolocation plugin itself to request it's permissions like this: Geolocation.requestPermissions();
Anyway, it's always recommended to let the plugins work themselves, when you try to use getCurrentPosition or watchPosition, the plugin will automatically request the permission if not granted.
Most helpful comment
You can use Geolocation plugin itself to request it's permissions like this:
Geolocation.requestPermissions();Anyway, it's always recommended to let the plugins work themselves, when you try to use
getCurrentPositionorwatchPosition, the plugin will automatically request the permission if not granted.