right now I am loading all of my images from the server url. In HTML it looks like
image.png" />
and this is working fine. I can see the images on the profiles. But I am also using the google maps native ionic plugin and it won't load my images from the same path. At first I thought I made some mistakes but after verifying everything it correct I was trying another png from wikipedia which was loading as well. Afterwards I took the image, which is not loading from my server and uploaded it to an image upload service. Referencing to this image in my application is working in google maps plugin, referring the same image from my nodejs server is not.
I am using express and a public folder for providing those images.
app.use(express.static(path.join(__dirname, 'public')));
Path for example: http://192.168.178.35:4000/uploads/images/group/thumb_60f95db8d280a0639f188a6a.png
I can also access the image in the browser, so I have no clue what could be the problem. Any suggestions would be very welcome.
Google Maps Plugin: https://github.com/mapsplugin/cordova-plugin-googlemaps
