Find Jobs
Hire Freelancers

Build part of a web site

$30-250 USD

Closed
Posted over 8 years ago

$30-250 USD

Paid on delivery
Hi there, I've this "small" idea in my mind and I'd like to transform it in something real. Web pages, usable also with mobile devices: It is a sort of “old school MUD game”, but for fitness purpose. I live in this town with zillions of steps and dozens of asphalt road/trail connections. I want to create an interactive path generator for my friends and people of the town who wants a workout program. How it works? You choose a starting point then you move through "rooms" via http links, every room represent a piece of the town, precisely a stair, a road, a path and so on. Every room have it's own specs and these specs will be added to the "User workout stats". These specs($variables) are: .$ID [the room unique ID, for linking, ex: "CN001" "CN002" "SG001"] .$TITLE [a title for the room, ex: "Church St part 1 of 5"] .$DESCRIPTION [ex: "you are at the bottom of Church St...."] .$STEPS [number of steps on that room (up to next room), ex: "230"] .$ROAD [meters of road in that room (up to next room), ex: "500"] .$PATH [meters of path/trail in that room (up to next room), ex: "1200"] .$LENGHT [meters of workout in that room (up to next room), ex: "1100"] .$DROPUP [ + diff in height of the room (up to next room), ex: "13"] .$DROPDW [ - diff in height of the room (up to next room), ex: “-13”] .$LOCHEIGHT [height of the room (up to next room), ex: "162"] .$GEOLOC [GPS Position of the room, used only for the 1st & last room] -$variables for user stats- .$TOTSTEPS [total number of steps done in the "workout", ex: "12230"] .$TOTROAD [total meters of road done in the "workout", ex: "1500"] .$TOTPATH [total meters of path done in the "workout", ex: "1700"] .$TOTLENGHT [total meters of "workout", ex: "18000"] .$TOTDROPUP [total + difference in heights of “workout”, ex: “1550”] .$TOTDROPDW [total - difference in heights of “workout”, ex: “-550”] .$LOCHEIGHTSTART [height level start point of the workout] .$LOCHEIGHTEND [height level start point of the workout] A direct example: ==home page== [$ID=HOME] the user have to insert some data (for profiling purpose: name, email…) and then choose the starting point (a simple menu or a simple map should be ok for this purpose) ==chosen starting point== [$ID=CN001] -get variables of the room- .$ID=CN001 [get from DB or text file] .$TITLE=Church plaza [get from DB or text file] .$DESCRIPTION=Center of church plaza [get from DB or text file] .$STEPS=0 [get 0 because is the start point] .$ROAD=0 [get 0 because is the start point] .$PATH=0 [get 0 because is the start point] .$DROPUP=0 [get 0 because is the start point] .$DROPDW=0 [get 0 because is the start point] .$LOCHEIGHT=150 .$GEOLOC=42.12.12 -set variables for user stats- .$TOTSTEPS=0 [set 0 because is the start point] .$TOTROAD=0 [set 0 because is the start point] .$TOTPATH=0 [set 0 because is the start point] .$TOTDROP=0 [set 0 because is the start point] .$TOTDROPUP=0 [set 0 because is the start point] .$TOTDROPDW=0 [set 0 because is the start point] .$TOTLENGHT=0 [set 0 because is the start point] .$GEOLOCSTART=42.12.12 .$LOCHEIGHTSTART=150 -text of the room- hi $user, this is your starting point: //the whole description about the place with some useful information// “1/2 town” neighbourhood, is the center of the town, choose your next step from the below choices: -let the user choose next “room” of workout- go to east [$ID=CN002], you’ll find many stairs along the asphalt road; go to south [$ID=CN003], along the asphalt road, 1st crossroad after 1km; go to west [$ID=CN004], along the asphalt road, 1st crossroad after 2km; go to north [$ID=CN005], 212 steps before next crossroad. Steepy stair, old turkish neighbourhood. ==the user choose to go north== [$ID=CN005] -get variables of the room- .$ID=CN005 [get from DB or text file] .$TITLE=New Bond St - part 1 of 5 [get from DB or text file] .$DESCRIPTION=Bottom of New Bond St [get from DB or text file] .$STEPS=212 [get from DB or text file] .$ROAD=0 [get from DB or text file] .$PATH=0 [get from DB or text file] .$DROPUP=18 [get from DB or text file] .$DROPDW=0 [get from DB or text file] .$LOCHEIGHT=168 [get from DB or text file] .$LENGHT=10 [get from DB or text file] .$GEOLOC=42.12.14 [get from DB or text file] -set variables for user stats- .$TOTSTEPS=212 [get $STEPS from above and add that value to $TOTSTEPS] .$TOTROAD=0 [get $ROAD “ “ “ “ “ “ “ $TOTSTEPS] .$TOTPATH=0 [get $PATH “ “ “ “ “ “ “ $TOTPATH] .$TOTDROPUP=18 [get $DROPUP “ “ “ “ “ “ “ $TOTDROPUP] .$TOTDROPDW=0 [get $DROPDW “ “ “ “ “ “ “ $TOTDROPDW] .$TOTLENGHT=10 [get $LENGHT “ “ “ “ “ “ “ $TOTLENGHT] .$GEOLOCSTART=42.12.12 [get from 1st “room”] .$LOCHEIGHTSTART=150 [get from 1st “room”] -text of the room- $user, you choose to go up to the hills //the whole description about the place with some useful information taken from $DESCRITPION of ID=$CN005// -let the user choose next block of workout- $user, where you'll go? go to east [$ID=CN006], 200 steps before next cross road (BNC); go to south [$ID=CN007], 300 steps BNC. Old turkish neighbourhood; go to west [$ID=CN008], along the asphalt road, 1km BNC; go to north [$ID=CN009], 400 steps BNC. Steepy stair, old turkish neighbourhood Finish workout [$ID=XXXXX] finish here your workout ==the user choose to go west== [$ID=CN008] -get variables of the room- [get all these from DB or text file] .$ID=CN008 .$TITLE=Along the asphalt road .$DESCRIPTION=Beginning of Asphalt Rd. there are… blah blah blah .$STEPS=0 .$ROAD=1150 .$PATH=0 .$DROPUP=0 .$DROPDW=22 .$LOCHEIGHT=146 .$LENGHT=1150 .$GEOLOC=42.12.18 -set the $var for user stats- [get $VAR from room stats, add to $TOTVAR] .$TOTSTEPS=212 [212+0] .$TOTROAD=1150 [1150+0] .$TOTPATH=0 [0+0] .$TOTDROPUP=18 [18+0] .$TOTDROPDW=22 [0+22] .$TOTLENGHT=1160 [10+1150] .$GEOLOCSTART=42.12.12 [get from 1st “room”] .$LOCHEIGHTSTART=150 [get from 1st “room”] -text of the room- $user, you choose to go along the asphalt road //the whole description about the place with some useful information taken from $DESCRITPION of ID=$CN008// yadda yadda blah blah -let the user choose next “room” of workout- $user, where you'll go? go to east [$ID=CN010], 200 steps BNC. Steepy stair; go to south [$ID=CN011], 300 steps BNC. Steepy stair; go to west [$ID=SP008], along the asphalt road, 12km BNC; go to north [$ID=LQ009], 400 steps BNC. Old turkish neighbourhood. Finish workout [$ID=XXXXX] finish here your workout ==the user choose to go north== [$ID=LQ009] -get variables of the room- [get all these from DB or text file] .$ID=LQ009 .$TITLE=Along Uncle Tom Stair .$DESCRIPTION=You just did the first 400 steps of Uncle Tom Stair. .$STEPS=400 .$ROAD=0 .$PATH=0 .$DROPUP=111 .$DROPDW=0 .$LOCHEIGHT=257 .$LENGHT=800 .$GEOLOC=42.12.22 -set the $var for user stats- [get $VAR from room stats, add to $TOTVAR] .$TOTSTEPS=612 [212+400] (get 212 from previous $TOTSTEPS) .$TOTROAD=1150 [1150+0] (“) .$TOTPATH=0 [0+0] (“) .$TOTDROPUP=129 [18+111] (“) .$TOTDROPDW=22 [22+0] (“) .$TOTLENGHT=1960 [1160+800] (“) .$GEOLOCSTART=42.12.12 [get from 1st “room”] .$LOCHEIGHTSTART=150 [get from 1st “room”] -text of the room- $user, you choose to go up along the steepy stair of Uncle Tom Stairs //the whole description about the place with some useful information taken from $DESCRITPION of ID=$LQ009// -let the user choose next “room” of workout- $user, where you'll go? go to east [$ID=FQ010], 100 steps BNC. Steepy stair, market district; go to south [$ID=GQ011], 450 steps BNC. Old turkish neighbourhood; go to west [$ID=SS008], along the asphalt road, 1km BNC; go to north [$ID=LQ010], 600 steps BNC. Steepy stair. Finish workout [$ID=XXXXX] finish here your workout ==the user choose to finish here== [$ID=XXXXX] -get variables of the room- [get all these from DB or text file] .$ID=XXXXX .$TITLE=Finished workout .$DESCRIPTION=You just finished your workout. Compliments. -set the $var for user stats- [get $VAR from room stats, add to $TOTVAR] .$TOTSTEPS=612 [612+0] (get 212 from previous $TOTSTEPS) .$TOTROAD=1150 [1150+0] (“) .$TOTPATH=0 [0+0] (“) .$TOTDROPUP=129 [129+0] (“) .$TOTDROPUP=22 [22+0] (“) .$TOTLENGHT=1960 [1960+0] (“) .$GEOLOCSTART=42.12.12 [get from 1st “room”] .$GEOLOCEND=42.12.22 [get from last “room”] .$LOCHEIGHTSTART=150 [get from 1st “room”] .$LOCHEIGHTEND=257 [get from last “room”] -text of the room- $user, you finish your workout here //the whole description about the place with some useful information taken from $DESCRITPION of ID=$LQ009 & ID=$XXXXX// -A page should appear with the stats, all the descriptions of all the rooms the user went through. Ready to be printed. Ex.: $user, your workout content is 1960m long with a positive drop of 129m and a negative of 22. Your start point is at 150m above mean sea level and you’ll finish at 257m. 612 steps, 1150m of asphalt road and 0m of trail are included. Enjoy it. Your trailbook: 1st room description 2nd room description 3rd room description last room description
Project ID: 8231809

About the project

10 proposals
Remote project
Active 8 yrs ago

Looking to make some money?

Benefits of bidding on Freelancer

Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
10 freelancers are bidding on average $356 USD for this job
User Avatar
Hi, we have read all the requirements and we are very confident to do this project from start till end. We definitely have some questions when we discuss project with you. Due to the change of bid system at freelancer.com, they ask freelancer to submit the project proposal at the time of bid. But it is not the right way, initially we can go through the requirements but we definitely need to spend time to write the proposal. Also they provide no place or private message unless you contact us, therefore we cannot submit the portfolio, examples site and our creative work. Also we do not post the portfolio and work examples publically to avoid other people copying it and claiming as their own. Please check our profile and the reviews given by the clients who have worked with us and see how much they appreciate our work by giving us their wonderful word in shape of feedback. Please send us a message so we can submit the links of our portfolio and then you can review and if you like we can start discussing project to help you to reach the final decision. We shall finish this project in timely manner and will finish it in time. We offer IT, Web design, web development and Smart phone application development. We also give life time guarantee to our work. Thanks
$1,567 USD in 18 days
4.9 (691 reviews)
9.2
9.2
User Avatar
Hi I have gone through the details of your project and we find it well within our capabilities. I offer a wide range of services, including Web design, PHP/MySQL web application development, Open sources like Joomla, Os-commerce,vBulletin , Zen cart-Drupal , android and IOS , I can create and deliver the project as per the information.I have skilled, expert programmers I'm very excited to assist you in making your Sites successful – please feel free to contact me directly to discuss this position further. Thanks
$195 USD in 8 days
4.7 (449 reviews)
8.2
8.2
User Avatar
Hi I work towards providing reliable, relevant and robust IT solutions at most competitive prices to my customers. I ensure 100% customer satisfaction so lets start Thanks
$201 USD in 7 days
4.8 (378 reviews)
8.2
8.2
User Avatar
A proposal has not yet been provided
$277 USD in 5 days
4.8 (158 reviews)
7.3
7.3
User Avatar
I want to discuss this project with you further, let me know the best suitable time for you to schedule the meeting, Feel free to message me at any time, i used to be online 14 hrs in a day on this website so probably you will get a quick response from my end.
$340 USD in 15 days
4.9 (67 reviews)
7.2
7.2
User Avatar
Hi, I'd like offer my self as a candidate for this project. I can provide you the best solutions that include the all features as well you required, even I assure you that I will provide you best quality work ASAP. Regards Poul
$210 USD in 3 days
5.0 (10 reviews)
4.4
4.4
User Avatar
A proposal has not yet been provided
$144 USD in 3 days
5.0 (18 reviews)
3.6
3.6
User Avatar
Dear Hiring Manager, I Understand your basic requirement of related creative and a better functional website. So, Don't worry i can solve each and every problem's related to your website.I will Provide you good features added as it is being refactored. By which your Ongoing development includes making the site responsive using mobile-first design principles. My developer team also qualities detail oriented, task oriented and productive, punctual, good communication skills, honest, good computational / math skills, consistent use of coding standards and documentation, and a positive attitude with daily follow up as you want. Our Expert Technical Skills -Google Map API, HTML5, PHP, WORDPRESS, CSS3,HTML5, CSS3, JavaScript/jQuery (Angular - preferably), AJAX, JSON, XML, Laravel, Eloquent ORM, Envoy, data management, My SQL Administration, JS, Graphic designing, and SEO I also believe in "Win-Win situation" and client satisfaction. If you interested to deal with me please give me a positive response on my given skype id. Thanks & Regards Hitesh Solanki.
$100 USD in 2 days
4.8 (1 review)
1.3
1.3
User Avatar
hello, I'm a very good web and mobile developer, I can handle your task easily, we can make it more professional and do app for mobiles if you want so, there are much more possibilities for fitness, long story short, message me and we can discuss further details, believe me, I have big ideas about that :)
$222 USD in 3 days
0.0 (1 review)
0.0
0.0

About the client

Flag of ITALY
Italy
0.0
0
Member since Aug 8, 2015

Client Verification

Thanks! We’ve emailed you a link to claim your free credit.
Something went wrong while sending your email. Please try again.
Registered Users Total Jobs Posted
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Loading preview
Permission granted for Geolocation.
Your login session has expired and you have been logged out. Please log in again.