Try to create a small app just with the api calls and a googlemap.
it wil be easier to find problems if you do not need to spent time on other issues.
I tried all my best trying to run exact solution in my local server but to no avail. I first wanted to understand your solution first before i talk about applying it in my code, but i am not getting it right with my local wamp server i have been using since for development.
1.
Under process global where you have:
Public PhpPath As String = $"http://map.b4xcloud.de/"$
to (my local wireless ipv4 @ ipconfig at command prompt)
Public PhpPath As String = $"http://192.168.43.47/"$
2.
I also changed the one under, Sub MapFragment1_Ready:
from:
job.Download2("
http://map.b4xcloud.de",
to:
job.Download2("
http://192.168.43.47/",
3.
Under PHP, i changed your remote host settings from:
$servername = 'host';
$username = 'd02e9e3d';
$password = 'xxxxxx';
$dbname = 'd02e9e3d';
include_once("./MysqliDb.php");
$db = new MysqliDb (Array ('host' => $servername,'username' => $username, 'password' => $password, 'db'=> $dbname, 'port' => 3306, 'prefix' => '', 'charset' => 'utf8'));
DEFINE ('base','1');
to
<?php
$servername = 'localhost';
$username = 'root';
$password = '';
$dbname = 'test';
include_once("./MysqliDb.php");
$db = new MysqliDb (Array ('host' => $servername,'username' => $username, 'password' => $password, 'db'=> $dbname, 'port' => 3306, 'prefix' => '', 'charset' => 'utf8'));
DEFINE ('base','1');
Note: I ensured php PDO_Mysql and other related extensions are set for my wampserver to support mysqlidb.php and dbobject.php classes. I also ensured ports 80 and 3306 are configured for window firewall. I have twisted this into different areas to no avail. If there is anything different from remote host setting you hosted this solution that is different from what i am doing at moment. Please, with must respect for you, kindly let me know.
Other solutions i am trying right now:
1. I just downloaded latest version of wampserver so i can know if it is the problem
2. Another option is to get good emulator that supports google play service, so i can be able to trace where i am getting it wrong running your wonderful solution:
a. I have downloaded Genymotion and install successfully, but bringing this error: "...Genymotion requires a Graphic Card with 3D Acceleration and uptodate OpenGL with compatible driver", which i may open new thread for to seek solution aside using Virtual Machine/virtualization approach.
b. I have also installed all required and suggested SDK Manager files, but to start the inbuilt emulator is also generating ".../annotation/XmlSchema..." error, which may also require new thread to be opened.
Thank you, for your patience, immense contributions and sacrificing your precious time to render unconditional assistance!
Best Regards